mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
ad4cde15b5
It even draws a border around itself.
19 lines
278 B
Objective-C
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
|