mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-27 06:34:11 +00:00
dcf1bcf141
memory, though.
47 lines
914 B
Objective-C
47 lines
914 B
Objective-C
#include "Point.h"
|
|
|
|
@interface HUDObject : Object
|
|
{
|
|
Point origin, size;
|
|
BOOL visible;
|
|
integer handle;
|
|
}
|
|
|
|
+ (void) initClass;
|
|
- (id) initWithComponents: (integer) x : (integer) y;
|
|
- (void) free;
|
|
- (integer) handle;
|
|
- (Point) origin;
|
|
- (void) setOrigin: (Point) newPoint;
|
|
- (void) translate: (Point) addPoint;
|
|
- (Point) size;
|
|
//- (void) center Horizontal: (BOOL) h Vertical: (BOOL) v;
|
|
- (BOOL) isVisible;
|
|
- (void) setVisible: (BOOL) _visible;
|
|
- (void) display;
|
|
@end
|
|
|
|
@interface HUDText : HUDObject
|
|
{
|
|
string text;
|
|
}
|
|
|
|
- (id) initWithComponents: (integer) x :(integer) y :(string) _text;
|
|
- (string) text;
|
|
- (void) setText: (string) _text;
|
|
- (void) display;
|
|
@end
|
|
|
|
@interface HUDGraphic : HUDObject
|
|
{
|
|
QPic picture;
|
|
}
|
|
|
|
- (id) initWithComponents: (integer)x :(integer)y :(string) _file;
|
|
- (void) free;
|
|
- (void) setFile: (string) _file;
|
|
- (void) display;
|
|
@end
|
|
|
|
@extern void () HUD_Init;
|
|
@extern integer HUDHandleClass;
|