Subversion Repositories sssnakesss

Rev

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

Rev Author Line No. Line
10 tom 1
#include "point.hpp"
2
 
17 tom 3
Point::Point()
4
{
5
    X = 0;
6
    Y = 0;
7
}
8
 
10 tom 9
Point::Point(int x, int y)
10
{
11
    X = x;
12
    Y = y;
13
}