quakeforge/ruamoko/qwaq/qwaq-app.h
Bill Currie ad4cde15b5 [qwaq] Get Window working
It even draws a border around itself.
2020-03-06 00:32:09 +09:00

19 lines
278 B
Objective-C

#ifndef __qwaq_app_h
#define __qwaq_app_h
#include "event.h"
#include "qwaq-group.h"
@class Screen;
@interface QwaqApplication: Group
{
qwaq_event_t event;
qwaq_command endState;
Screen *screen;
}
-run;
-handleEvent: (qwaq_event_t *) event;
@end
#endif//__qwaq_app_h