0x004BF0BC
| 37 | |
| 38 | // 0x004BF0BC |
| 39 | static void cancelConstructionMode() |
| 40 | { |
| 41 | auto* w = WindowManager::find(WindowType::error); |
| 42 | if (w != nullptr) |
| 43 | { |
| 44 | WindowManager::close(w); |
| 45 | return; |
| 46 | } |
| 47 | |
| 48 | if (!Ui::Windows::Vehicle::cancelVehicleTools()) |
| 49 | { |
| 50 | ToolManager::toolCancel(); |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | // 0x004BF0E6 |
| 55 | static void pauseUnpauseGame() |
nothing calls this directly
no test coverage detected