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

8 lines
73 B
C++
Executable File

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