diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-29 20:35:17 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-29 20:35:17 +0100 |
commit | e4be73051a68b552c44280bbe9836dd4f02972d8 (patch) | |
tree | a2d0dbad0255a9da7c58f74c7479a39fcccd34db /src/crepe/facade/Sound.h | |
parent | 693355f55193cb2ea4c29616073227e37665afc1 (diff) |
audio system kinda working
Diffstat (limited to 'src/crepe/facade/Sound.h')
-rw-r--r-- | src/crepe/facade/Sound.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/crepe/facade/Sound.h b/src/crepe/facade/Sound.h index 10d7c3c..35bccdb 100644 --- a/src/crepe/facade/Sound.h +++ b/src/crepe/facade/Sound.h @@ -20,13 +20,8 @@ public: Sound(const Asset & src); ~Sound(); // dbg_trace - class Handle { - private: + struct Handle { SoLoud::handle handle; - float volume = 1.0f; - bool looping = false; - - friend class SoundContext; }; private: |