quakeforge/ruamoko/qwaq/qwaq-app.h
Bill Currie df2ed4b086 [qwaq] Move from tools to ruamoko
This fixes the dependency issues between qwaq and ruamoko. qwaq is
actually older than ruamoko. That little language feature test has come
a long way.

However, I'm considering moving to non-recursive make, but...
2020-03-01 00:55:15 +09:00

18 lines
255 B
Objective-C

#ifndef __qwaq_app_h
#define __qwaq_app_h
#include "qwaq-view.h"
#include "event.h"
@interface QwaqApplication: Object
{
qwaq_event_t event;
qwaq_command endState;
View *view;
}
-run;
-handleEvent: (qwaq_event_t *) event;
@end
#endif//__qwaq_app_h