mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 21:50:05 +00:00
b0879ba255
Group and the menu plist parser are currently broken.
15 lines
304 B
C
15 lines
304 B
C
#ifndef __ruamoko_gui_Point_h
|
|
#define __ruamoko_gui_Point_h
|
|
|
|
struct Point {
|
|
integer x;
|
|
integer y;
|
|
};
|
|
|
|
typedef struct Point Point;
|
|
|
|
@extern Point makePoint (integer x, integer y);
|
|
@extern Point addPoint (Point a, Point b);
|
|
@extern Point subtractPoint (Point a, Point b);
|
|
|
|
#endif //__ruamoko_gui_Point_h
|