mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
14 lines
190 B
Objective-C
14 lines
190 B
Objective-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
|