mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
22 lines
348 B
C
22 lines
348 B
C
|
#ifndef __ruamoko_View_h
|
||
|
#define __ruamoko_View_h
|
||
|
|
||
|
#include "Object.h"
|
||
|
#include "Point.h"
|
||
|
#include "Size.h"
|
||
|
|
||
|
@interface View: Object
|
||
|
{
|
||
|
@public
|
||
|
integer xpos, ypos;
|
||
|
integer xlen, ylen;
|
||
|
integer xabs, yabs;
|
||
|
View parent;
|
||
|
}
|
||
|
|
||
|
- (id) initWithComponents: (integer)x : (integer)y : (integer)w : (integer)h;
|
||
|
- (void) draw;
|
||
|
@end
|
||
|
|
||
|
#endif //__ruamoko_Rect_h
|