| 369 | SDL_Renderer *AbyssEngine::getRenderer() { return _renderer.get(); } |
| 370 | |
| 371 | void AbyssEngine::setWindowTitle(const std::string_view title) const { SDL_SetWindowTitle(_window.get(), title.data()); } |
| 372 | |
| 373 | void AbyssEngine::playVideo(const std::string_view path) { _videoStream = std::make_unique<Streams::VideoStream>(loadFile(path), std::nullopt); } |
| 374 | void AbyssEngine::playVideoAndAudio(const std::string_view videoPath, const std::string_view audioPath) { |