2023-08-12 00:04:02 +02:00
|
|
|
#ifndef DYNAMIC_PROGRAM_CLI_INTERFACE_H
|
|
|
|
#define DYNAMIC_PROGRAM_CLI_INTERFACE_H
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include "game_state.h"
|
|
|
|
|
|
|
|
namespace Hanabi {
|
2023-08-12 09:36:06 +02:00
|
|
|
void cli(const std::shared_ptr<HanabiStateIF>& game);
|
2023-08-12 00:04:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif //DYNAMIC_PROGRAM_CLI_INTERFACE_H
|