Files
Jérôme Delacotte 7b30d6e298 first commit
2025-03-06 11:15:32 +01:00

13 lines
110 B
C++

#include "Point.h"
Point::Point()
{
x = 0;
y = 0;
}
Point::Point(int _x, int _y)
{
x = _x;
y = _y;
}