mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
6d494bfcdf
-Wall still isn't used yet due to a missing method in Array, and overzealous warnings in qfcc, but this covers the necessary fixes.
16 lines
218 B
Objective-C
16 lines
218 B
Objective-C
#ifndef __MenuGroup_h
|
|
#define __MenuGroup_h
|
|
|
|
#include "gui/Group.h"
|
|
|
|
@interface MenuGroup : Group
|
|
{
|
|
integer base;
|
|
integer current;
|
|
}
|
|
-(void)setBase:(integer)b;
|
|
-(void) next;
|
|
-(void) prev;
|
|
@end
|
|
|
|
#endif//__MenuGroup_h
|