mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 08:50:58 +00:00
045e52cf14
protection macros consistent
17 lines
254 B
Objective-C
17 lines
254 B
Objective-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
|