mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
d88a091fc6
Well, that took a fair bit more than it should have to get working: had to implement the protocol support in qfcc and engine-side ruamoko.
20 lines
332 B
Objective-C
20 lines
332 B
Objective-C
#ifndef __qwaq_view_h
|
|
#define __qwaq_view_h
|
|
|
|
#include <Array.h>
|
|
#include <Object.h>
|
|
|
|
#include "qwaq-draw.h"
|
|
#include "qwaq-rect.h"
|
|
|
|
@interface View: Object <Draw>
|
|
{
|
|
Rect rect;
|
|
Rect absRect;
|
|
Point point; // can't be local :(
|
|
struct window_s *window;
|
|
}
|
|
-initWithRect: (Rect) rect;
|
|
@end
|
|
|
|
#endif//__qwaq_view_h
|