Rev 9 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
#include "point.hpp"
Point::Point(int x, int y)
{
X = x;
Y = y;
}