mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-01 05:21:02 +00:00
c377b324a1
Things are finally doing something again, and getting closer to having a moveable window.
18 lines
331 B
Objective-C
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
|