mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
cdc1f0c5e7
Now that qfcc actually supports them properly.
24 lines
323 B
Objective-C
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
|