Subversion Repositories sssnakesss

Rev

Rev 9 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef POINT_HPP
#define POINT_HPP

class Point
{
    public:
        Point(int x, int y);

        int X;
        int Y;
};

#endif // POINT_HPP