mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
6d494bfcdf
-Wall still isn't used yet due to a missing method in Array, and overzealous warnings in qfcc, but this covers the necessary fixes.
20 lines
334 B
Objective-C
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
|