#ifndef OUR_DICK_GAME_STATE_HPP #define OUR_DICK_GAME_STATE_HPP #define TILE_COUNT 9 struct game_state { int turn; char board[TILE_COUNT]; }; #endif