quakeforge/ruamoko/qwaq/qwaq-screen.h
Bill Currie c377b324a1 [qwaq] Add Group and clean up lots of mess
Things are finally doing something again, and getting closer to having a
moveable window.
2020-03-05 15:44:53 +09:00

18 lines
331 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;
-setBackground: (int) ch;
-printf: (string) fmt, ...;
-addch: (int) ch atX: (int) x Y: (int) y;
@end
#endif//__qwaq_screen_h