#ifndef POSITION_H #define POSITION_H struct Position final { int x; int y; Position(); Position(int x, int y); }; #endif