quakeforge/ruamoko/qwaq/qwaq-app.h
Bill Currie 877ad35a82 [qwaq] Rework the hierarchy again
It doesn't work right now because View unconditionally sends refresh to
its textContext, but textContext can be a draw buffer which does not
respond to refresh. Still, these changes (notably the assignment chain
in qwaq-group.r really pushed qfcc).
2020-03-14 19:45:07 +09:00

22 lines
284 B
Objective-C

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