#ifndef C_C_POSITION_H #define C_C_POSITION_H struct Position { int x; int y; explicit Position(int x_ = 0, int y_ = 0) { x = x_; y = y_; } }; #endif