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
#include "point.hpp"
2
 
3
Point::Point(int x, int y)
4
{
5
    X = x;
6
    Y = y;
7
}