| 5850 | } |
| 5851 | |
| 5852 | void Engine::QueueLevelToLoad(const Path& level) { |
| 5853 | if (Online::Instance()->IsHosting()) { |
| 5854 | Online::Instance()->PerformLevelChangeCleanUp(); |
| 5855 | Online::Instance()->ChangeLevel(level.GetOriginalPathStr()); |
| 5856 | } |
| 5857 | |
| 5858 | queued_level_ = level; |
| 5859 | UIShowCursor(1); |
| 5860 | cursor.SetVisible(false); |
| 5861 | } |
| 5862 | |
| 5863 | void Engine::QueueLevelCacheGeneration(const Path& path) { |
| 5864 | cache_generation_paths.push_back(path); |
nothing calls this directly
no test coverage detected