---------------------------------------------- ON MENU FRAME ---------------------------------------------
| 46 | |
| 47 | //---------------------------------------------- ON MENU FRAME --------------------------------------------- |
| 48 | void GameImpl::onMenuFrame() |
| 49 | { |
| 50 | //this function is called each frame while starcraft is in the main menu system (not in-game). |
| 51 | this->inGame = false; |
| 52 | |
| 53 | events.push_back(Event::MenuFrame()); |
| 54 | this->server.update(); |
| 55 | |
| 56 | this->autoMenuManager.onMenuFrame(); |
| 57 | } |
| 58 | //---------------------------------------------- CHANGE RACE ----------------------------------------------- |
| 59 | void GameImpl::_changeRace(int slot, BWAPI::Race race) |
| 60 | { |
no test coverage detected