| 4199 | extern int num_detail_object_draw_calls; |
| 4200 | |
| 4201 | void Engine::NewLevel() { |
| 4202 | Path p = FindFilePath(new_empty_level_path, kAnyPath); |
| 4203 | Engine::Instance()->QueueState(EngineState("", kEngineEditorLevelState, p)); |
| 4204 | } |
| 4205 | |
| 4206 | bool Engine::GetSplitScreen() const { |
| 4207 | return forced_split_screen_mode == kForcedModeSplit || (forced_split_screen_mode == kForcedModeNone && Graphics::Instance()->config_.split_screen()); |
no test coverage detected