mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 17:01:22 +00:00
18 lines
254 B
C
18 lines
254 B
C
|
#ifndef __ruamoko_point_h
|
||
|
#define __ruamoko_point_h
|
||
|
|
||
|
#include "object.h"
|
||
|
|
||
|
@interface Point : Object
|
||
|
{
|
||
|
@public
|
||
|
integer x,y;
|
||
|
}
|
||
|
-initAtX:(integer)_x Y:(integer)_y;
|
||
|
-initWithPoint:(Point)p;
|
||
|
-setTo:(Point)p;
|
||
|
-moveBy:(Point)p;
|
||
|
@end
|
||
|
|
||
|
#endif//__ruamoko_point_h
|