| 1519 | } |
| 1520 | |
| 1521 | void UpdateProgress(float progress, bool skip = false) |
| 1522 | { |
| 1523 | if (skip) |
| 1524 | return; |
| 1525 | |
| 1526 | g_Renderer.UpdateProgress(progress); |
| 1527 | } |
| 1528 | |
| 1529 | bool LoadLevel(const std::string& path, bool partial) |
| 1530 | { |
no test coverage detected