Subversion Repositories sssnakesss

Rev

Rev 10 | Blame | 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