Skip to content
Snippets Groups Projects
Commit ef7f04ae authored by Sopi (sofab194)'s avatar Sopi (sofab194)
Browse files

added current_frame to IDABot

simple python edit
parent de589be2
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,8 @@ PYBIND11_MODULE(library, m)
.def_property_readonly("minerals", &IDABot::GetMinerals, "How much minerals we currently have")
.def_property_readonly("current_supply", &IDABot::GetCurrentSupply, "How much supply we are currently using")
.def_property_readonly("max_supply", &IDABot::GetMaxSupply, "How much supply we can currently use")
.def_property_readonly("gas", &IDABot::GetGas, "How much gas we currently have");
.def_property_readonly("gas", &IDABot::GetGas, "How much gas we currently have")
.def_property_readonly("current_frame", &IDABot::GetCurrentFrame, "Which frame we are currently on");
py::class_<sc2::PlayerSetup>(m, "PlayerSetup");
......
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