mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
18 lines
255 B
Objective-C
18 lines
255 B
Objective-C
#ifndef __qwaq_app_h
|
|
#define __qwaq_app_h
|
|
|
|
#include "event.h"
|
|
|
|
@class Screen;
|
|
|
|
@interface QwaqApplication: Object
|
|
{
|
|
qwaq_event_t event;
|
|
qwaq_command endState;
|
|
Screen *screen;
|
|
}
|
|
-run;
|
|
-handleEvent: (qwaq_event_t *) event;
|
|
@end
|
|
|
|
#endif//__qwaq_app_h
|