Skip to content
Snippets Groups Projects
Commit cb47ee66 authored by Edvin Bergström's avatar Edvin Bergström
Browse files

Merge branch 'aiarena' into 'master'

fix function name

See merge request !8
parents ee8ef9e2 82188f92
Branches mac
No related tags found
1 merge request!8fix function name
Pipeline #48691 failed
...@@ -28,7 +28,7 @@ PYBIND11_MODULE(library, m) ...@@ -28,7 +28,7 @@ PYBIND11_MODULE(library, m)
.def("start_game", &sc2::Coordinator::StartGame, "map_path"_a) .def("start_game", &sc2::Coordinator::StartGame, "map_path"_a)
.def("connect", &sc2::Coordinator::Connect, "port"_a) .def("connect", &sc2::Coordinator::Connect, "port"_a)
.def("update", &sc2::Coordinator::Update) .def("update", &sc2::Coordinator::Update)
.def("AllGamesEnded", &sc2::Coordinator::AllGamesEnded) .def("all_games_ended", &sc2::Coordinator::AllGamesEnded)
.def("join_game", &sc2::Coordinator::JoinGame) .def("join_game", &sc2::Coordinator::JoinGame)
.def("set_real_time", &sc2::Coordinator::SetRealtime) .def("set_real_time", &sc2::Coordinator::SetRealtime)
.def("load_replay_list",&sc2::Coordinator::SetReplayPath, "replay_path"_a) .def("load_replay_list",&sc2::Coordinator::SetReplayPath, "replay_path"_a)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment