quakeforge/ruamoko/cl_menu/CvarRangeView.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

23 lines
392 B
Objective-C

#ifndef __CvarRangeView_h
#define __CvarRangeView_h
#include "gui/Group.h"
@class Text;
@class Slider;
@class CvarRange;
@interface CvarRangeView : Group
{
Text title;
Text value;
Slider slider;
CvarRange range;
}
-(void)update;
-(id)initWithBounds:(Rect)aRect title:(string)_title sliderWidth:(integer)width :(CvarRange)_range;
-(void)inc;
-(void)dec;
@end
#endif//__CvarRangeView_h