quakeforge/ruamoko/qwaq/qwaq-app.h
Bill Currie 6ff5b5c101 [qwaq] Clean up the qwaq directory
Things were getting rather cluttered with everything being qwaq-* and
all in one directory. Now most have lost the qwaq- prefix and have been
moved into subdirectories (non-recursive make).
2020-03-30 02:34:08 +09:00

37 lines
538 B
Objective-C

#ifndef __qwaq_app_h
#define __qwaq_app_h
#include <Object.h>
#include "ui/event.h"
#include "ui/rect.h"
@class Array;
@class Group;
@class TextContext;
@class View;
extern int color_palette[64];
@interface QwaqApplication: Object
{
qwaq_event_t event;
qwaq_command endState;
Group *objects;
TextContext *screen;
Extent screenSize;
int autocount;
Array *debuggers;
}
-(Extent)size;
-(TextContext *)screen;
-addView:(View *)view;
-run;
@end
extern QwaqApplication *application;
#endif//__qwaq_app_h