Subversion Repositories sssnakesss

Rev

Rev 10 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#include "point.hpp"

Point::Point()
{
    X = 0;
    Y = 0;
}

Point::Point(int x, int y)
{
    X = x;
    Y = y;
}