mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
36 lines
541 B
C
36 lines
541 B
C
|
#ifndef __qwaq_app_h
|
||
|
#define __qwaq_app_h
|
||
|
|
||
|
#include <Object.h>
|
||
|
|
||
|
#include "ruamoko/qwaq/ui/event.h"
|
||
|
#include "ruamoko/qwaq/ui/rect.h"
|
||
|
|
||
|
@class Array;
|
||
|
@class Group;
|
||
|
@class TextContext;
|
||
|
@class View;
|
||
|
|
||
|
extern int color_palette[64];
|
||
|
|
||
|
@interface InputApplication: Object
|
||
|
{
|
||
|
qwaq_event_t event;
|
||
|
qwaq_command endState;
|
||
|
|
||
|
Group *objects;
|
||
|
|
||
|
TextContext *screen;
|
||
|
Extent screenSize;
|
||
|
int autocount;
|
||
|
}
|
||
|
-(Extent)size;
|
||
|
-(TextContext *)screen;
|
||
|
-addView:(View *)view;
|
||
|
-run;
|
||
|
@end
|
||
|
|
||
|
extern InputApplication *application;
|
||
|
|
||
|
#endif//__qwaq_app_h
|