mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
16 lines
206 B
Objective-C
16 lines
206 B
Objective-C
#ifndef __MenuGroup_h
|
|
#define __MenuGroup_h
|
|
|
|
#include "gui/Group.h"
|
|
|
|
@interface MenuGroup : Group
|
|
{
|
|
int base;
|
|
int current;
|
|
}
|
|
-(void)setBase:(int)b;
|
|
-(void) next;
|
|
-(void) prev;
|
|
@end
|
|
|
|
#endif//__MenuGroup_h
|