quakeforge/ruamoko/include/gui/Point.h

21 lines
325 B
C
Raw Normal View History

2004-02-04 02:35:57 +00:00
#ifndef __ruamoko_gui_Point_h
#define __ruamoko_gui_Point_h
/** \addtogroup gui */
2020-02-11 06:20:49 +00:00
///@{
struct Point {
int x;
int y;
};
typedef struct Point Point;
@extern Point makePoint (int x, int y);
@extern Point addPoint (Point a, Point b);
@extern Point subtractPoint (Point a, Point b);
2020-02-11 06:20:49 +00:00
///@}
2004-02-04 02:35:57 +00:00
#endif //__ruamoko_gui_Point_h