mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 21:20:07 +00:00
75ec6bf244
This is a nasty commit, sorry, but 99% of the commit is interdependent.
20 lines
343 B
Objective-C
20 lines
343 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
|