| 18 | public: |
| 19 | |
| 20 | void OnTestStart() override { |
| 21 | const GameInfo& game_info = agent_->Observation()->GetGameInfo(); |
| 22 | Point2D spawn_pt = FindRandomLocation(game_info); |
| 23 | agent_->Debug()->DebugCreateUnit(UNIT_TYPEID::TERRAN_MARINE, spawn_pt, agent_->Observation()->GetPlayerID(), 1); |
| 24 | agent_->Debug()->SendDebug(); |
| 25 | |
| 26 | wait_game_loops_ = 5; |
| 27 | } |
| 28 | |
| 29 | void OnStep() override { |
| 30 |
nothing calls this directly
no test coverage detected