Subversion Repositories sssnakesss

Rev

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

Rev Author Line No. Line
10 tom 1
#ifndef POINT_HPP
2
#define POINT_HPP
3
 
4
class Point
5
{
6
    public:
17 tom 7
        Point();
10 tom 8
        Point(int x, int y);
9
 
10
        int X;
11
        int Y;
12
};
13
 
14
#endif // POINT_HPP