quakeforge/ruamoko/cl_menu/CvarToggleView.h
Bill Currie 6d494bfcdf Fix a slew of warnings found by -Wall.
-Wall still isn't used yet due to a missing method in Array, and
overzealous warnings in qfcc, but this covers the necessary fixes.
2010-12-16 20:01:49 +09:00

20 lines
334 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