mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
19 lines
232 B
R
19 lines
232 B
R
#include "View.h"
|
|
|
|
@implementation View
|
|
|
|
-(id) initWithComponents: (integer)x : (integer)y : (integer)w : (integer)h
|
|
{
|
|
xpos = xabs = x;
|
|
ypos = yabs = y;
|
|
xlen = w;
|
|
ylen = y;
|
|
parent = NIL;
|
|
return self;
|
|
}
|
|
|
|
-(void) draw
|
|
{
|
|
}
|
|
|
|
@end
|