I have struct Point, it contains setters for x and y:
struct Point { int x; int y; Point() { x = 0; y = 0; } Point(int _