Endgame-Analyzer/include/state_explorer.h
2023-11-16 16:29:41 +01:00

18 lines
355 B
C++

#ifndef DYNAMIC_PROGRAM_CLI_INTERFACE_H
#define DYNAMIC_PROGRAM_CLI_INTERFACE_H
#include <memory>
#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