| 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) { |
| 375 | _videoStream = std::make_unique<Streams::VideoStream>(loadFile(videoPath), loadFile(audioPath)); |
| 376 | } |
| 377 | |
| 378 | float AbyssEngine::getMasterVolumeLevel() const { return _masterAudioLevel; } |
| 379 |