mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-12 00:01:43 +00:00
877ad35a82
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).
22 lines
284 B
Objective-C
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
|