quakeforge/ruamoko/cl_menu/Frame.h
Bill Currie ec26083228 start working on a gui lib with a Slider class. use the slider class for
the volume settings. doesn't /quite/ work properly yet
2004-02-03 08:31:26 +00:00

14 lines
263 B
Objective-C

#include "gui/Point.h"
#include "draw.h"
@interface Frame : Object
{
QPic picture;
float duration;
}
- (id) initWithFile: (string) file duration: (float) time;
- (void) dealloc;
- (Point) size;
- (float) duration;
- (void) draw: (integer) x :(integer) y;
@end