0ad/source/tools/rmgen/point.h

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