diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-30 16:32:13 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-30 16:32:13 +0100 |
commit | eefaeb807eb5d0b08353389070bf3d27c3d0d958 (patch) | |
tree | 14938c761e14ffa776c68836a1fcbaca1a4c1571 /src/crepe/facade | |
parent | 30e2b2b0cbb503d83a087d8d326940c3c4bc8fff (diff) |
test and debug audio system
Diffstat (limited to 'src/crepe/facade')
-rw-r--r-- | src/crepe/facade/SoundContext.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/crepe/facade/SoundContext.h b/src/crepe/facade/SoundContext.h index 91d3fe9..c651cd5 100644 --- a/src/crepe/facade/SoundContext.h +++ b/src/crepe/facade/SoundContext.h @@ -24,10 +24,10 @@ public: SoundContext & operator=(const SoundContext &) = delete; SoundContext & operator=(SoundContext &&) = delete; - Sound::Handle play(Sound & resource); - void stop(Sound::Handle &); - void set_volume(Sound &, Sound::Handle &, float); - void set_loop(Sound &, Sound::Handle &, bool); + virtual Sound::Handle play(Sound & resource); + virtual void stop(Sound::Handle &); + virtual void set_volume(Sound &, Sound::Handle &, float); + virtual void set_loop(Sound &, Sound::Handle &, bool); private: SoLoud::Soloud engine; |