#ifndef GAME_SETTINGS_H #define GAME_SETTINGS_H struct Coord { int x,y; }; int const MAX_X {25}; int const MAX_Y {25}; int wrap_x(int v); int wrap_y(int v); #endif