Xiangiqgame
AI engine for Xiangqi
Loading...
Searching...
No Matches
run_game.cpp
Go to the documentation of this file.
4
5int main() {
6
7 game::PlayerSpec red_player_spec{
10 };
11 game::PlayerSpec black_player_spec{
14 };
15
16 game::GameRunner game_runner{red_player_spec, black_player_spec};
17 auto game_summary = game_runner.RunGame();
18
19 return 0;
20}
GameSummary RunGame()
Definition: game_runner.hpp:25
Defines GamePiece and supporting constants and free functions.
int main()
Definition: run_game.cpp:5