mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
3a1e467ae8
Sadly, there are many bogus warnings and other errors. qfcc is still very sick :(.
20 lines
339 B
Objective-C
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
|