| 325 | } |
| 326 | |
| 327 | void AbyssEngine::setScene(std::unique_ptr<Common::Scene> scene) { |
| 328 | if (_nextScene != nullptr) { |
| 329 | Common::Log::warn("Scene already set, replacing..."); |
| 330 | } |
| 331 | _nextScene = std::move(scene); |
| 332 | } |
| 333 | |
| 334 | Common::Configuration &AbyssEngine::getConfiguration() { return _configuration; } |
| 335 |
no test coverage detected