quakeforge/ruamoko/cl_menu/Frame.h

15 lines
263 B
C
Raw Normal View History

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