mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
2c20a031e4
Hmm... "scene"... too much Unity?
26 lines
351 B
Objective-C
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
|