quakeforge/ruamoko/cl_menu/CvarToggleView.h
Bill Currie 3a1e467ae8 Non-bogus syntax and warning fixes for ruamoko/cl_menu.
Sadly, there are many bogus warnings and other errors. qfcc is still very
sick :(.
2011-02-14 23:10:46 +09:00

20 lines
339 B
Objective-C

#ifndef __CvarToggleView_h
#define __CvarToggleView_h
#include "gui/Group.h"
@class Text;
@class CvarToggle;
@interface CvarToggleView : Group
{
Text *title;
Text *value;
CvarToggle *toggle;
}
-(void)update;
-(id)initWithBounds:(Rect)aRect title:(string)_title :(CvarToggle *)_toggle;
-(void)toggle;
@end
#endif//__CvarToggleView_h