quakeforge/ruamoko/qwaq/qwaq-app.h
Bill Currie 2c20a031e4 [qwaq] Do up a little button test "scene"
Hmm... "scene"... too much Unity?
2020-03-19 18:41:53 +09:00

26 lines
351 B
Objective-C

#ifndef __qwaq_app_h
#define __qwaq_app_h
#include <Object.h>
#include "event.h"
@class Group;
@class TextContext;
@interface QwaqApplication: Object
{
qwaq_event_t event;
qwaq_command endState;
Group *objects;
TextContext *screen;
int autocount;
}
-run;
-draw;
-handleEvent: (qwaq_event_t *) event;
@end
#endif//__qwaq_app_h