17 lines
355 B
C++
17 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
|