| 126 | } |
| 127 | |
| 128 | bool Scene::Load(const std::filesystem::path& jsonFileName) |
| 129 | { |
| 130 | ThreadPool threadPool; |
| 131 | return LoadWithThreadPool(jsonFileName, &threadPool); |
| 132 | } |
| 133 | |
| 134 | bool Scene::LoadWithThreadPool(const std::filesystem::path& sceneFileName, ThreadPool* threadPool) |
| 135 | { |
no outgoing calls
no test coverage detected