Skip to content
Snippets Groups Projects
Commit 82188f92 authored by Rojikku98's avatar Rojikku98
Browse files

fix function name

parent ee8ef9e2
No related branches found
No related tags found
1 merge request!8fix function name
...@@ -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