mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
20 lines
347 B
Objective-C
20 lines
347 B
Objective-C
#ifndef __qwaq_view_h
|
|
#define __qwaq_view_h
|
|
|
|
#include <Array.h>
|
|
#include <Object.h>
|
|
|
|
#include "qwaq-rect.h"
|
|
|
|
@interface View: Object
|
|
{
|
|
Rect rect;
|
|
Rect absRect;
|
|
Point point; // can't be local :(
|
|
struct window_s *window;
|
|
}
|
|
-initWithRect: (Rect) rect;
|
|
-handleEvent: (struct qwaq_event_s *) event;
|
|
@end
|
|
|
|
#endif//__qwaq_view_h
|