Subversion Repositories sssnakesss

Rev

Rev 9 | Go to most recent revision | 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:
7
        Point(int x, int y);
8
 
9
        int X;
10
        int Y;
11
};
12
 
13
#endif // POINT_HPP