mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
df2ed4b086
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...
18 lines
255 B
Objective-C
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
|