quakeforge/ruamoko/cl_menu/CvarToggleView.h

20 lines
319 B
C
Raw Normal View History

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