quakeforge/ruamoko/include/gui/Slider.h

20 lines
282 B
C
Raw Normal View History

2004-02-04 02:35:57 +00:00
#ifndef __ruamoko_gui_Slider_h
#define __ruamoko_gui_Slider_h
#include "View.h"
@interface Slider: View
{
int index;
int size;
int dir;
}
- (id) initWithBounds: (Rect)aRect size: (int) aSize;
- (void) setIndex: (int) ind;
- (void) draw;
@end
2004-02-04 02:35:57 +00:00
#endif //__ruamoko_gui_Slider_h