quakeforge/ruamoko/include/gui/Slider.h
Bill Currie cdc1f0c5e7 [libr] Treat ruamoko headers as system headers
Now that qfcc actually supports them properly.
2020-03-03 15:24:41 +09:00

24 lines
323 B
Objective-C

#ifndef __ruamoko_gui_Slider_h
#define __ruamoko_gui_Slider_h
#include <gui/View.h>
/** \addtogroup gui */
///@{
@interface Slider: View
{
int index;
int size;
int dir;
}
- (id) initWithBounds: (Rect)aRect size: (int) aSize;
- (void) setIndex: (int) ind;
- (void) draw;
@end
///@}
#endif //__ruamoko_gui_Slider_h