mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-08 05:26:59 +00:00
56343ae9c8
This was SVN commit r2338.
14 lines
185 B
C++
14 lines
185 B
C++
#ifndef __POINT_H_
|
|
#define __POINT_H_
|
|
|
|
class Point
|
|
{
|
|
public:
|
|
int x, y;
|
|
Point(void);
|
|
Point(int x, int y);
|
|
~Point(void);
|
|
bool operator<(const Point& p) const;
|
|
};
|
|
|
|
#endif |