quakeforge/ruamoko/qwaq/qwaq-draw.h
Bill Currie c58cf2c2d0 [qwaq] Fail at object oriented design 101
This is horrible, doesn't work, isn't really the direction I want to go
(that became apparent while implementing Screen's handleEvent) and
crashes anyway (Array and not-id...)

*sigh*

Still, this does have some good stuff in it, and it pushed qfcc along
some more.
2020-03-03 21:32:19 +09:00

10 lines
109 B
Objective-C

#ifndef __qwaq_draw_h
#define __qwaq_draw_h
@protocol Draw
-draw;
-redraw;
-setParent: parent;
@end
#endif