mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
15 lines
190 B
C
15 lines
190 B
C
|
#ifndef __MenuGroup_h
|
||
|
#define __MenuGroup_h
|
||
|
|
||
|
#include "gui/Group.h"
|
||
|
|
||
|
@interface MenuGroup : Group
|
||
|
{
|
||
|
integer base;
|
||
|
integer current;
|
||
|
}
|
||
|
-(void)setBase:(integer)b;
|
||
|
@end
|
||
|
|
||
|
#endif//__MenuGroup_h
|