#ifndef DYNAMIC_PROGRAM_CLI_INTERFACE_H #define DYNAMIC_PROGRAM_CLI_INTERFACE_H #include #include "game_interface.h" namespace Hanabi { /** * Launches an interactive shell (on cout/cin) that allows to display, traverse and modify * the given game state. */ void cli(Game const & game); } #endif //DYNAMIC_PROGRAM_CLI_INTERFACE_H