Rev 10 | Details | Compare with Previous | Last modification | View Log | RSS feed
#ifndef POINT_HPP
#define POINT_HPP
class Point
{
public:
Point();
Point(int x, int y);
int X;
int Y;
};
#endif // POINT_HPP