quakeforge/ruamoko/qwaq/qwaq-screen.h
Bill Currie 877ad35a82 [qwaq] Rework the hierarchy again
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).
2020-03-14 19:45:07 +09:00

15 lines
235 B
Objective-C

#ifndef __qwaq_screen_h
#define __qwaq_screen_h
#include "qwaq-draw.h"
#include "qwaq-rect.h"
#include "qwaq-view.h"
@interface Screen: View
{
}
+(Screen *) screen;
-handleEvent: (qwaq_event_t *) event;
@end
#endif//__qwaq_screen_h