Subversion Repositories sssnakesss

Rev

Rev 10 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 freddie 1
struct point
2
{
3
    public:
4
        point(int x, int y);
5
        ~point();
6
 
7
        int X;
8
        int Y;
9
}