diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-01 17:25:06 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-01 17:25:06 +0200 |
commit | 8e67adc6828181b1df7c95da76f32962444fc7fd (patch) | |
tree | 21c8b3ef5fc040563aa70e480ea14252b15f2ef1 /src/crepe/SoundContext.h | |
parent | fe9bf1344ceae0fac9144e4a28fdcdbcb2267850 (diff) |
rename SoundSystem to SoundContext (2/2)
Diffstat (limited to 'src/crepe/SoundContext.h')
-rw-r--r-- | src/crepe/SoundContext.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/crepe/SoundContext.h b/src/crepe/SoundContext.h index 34dd6c5..d361d83 100644 --- a/src/crepe/SoundContext.h +++ b/src/crepe/SoundContext.h @@ -6,17 +6,17 @@ namespace crepe { -class SoundSystem { +class SoundContext { private: - SoundSystem(); - virtual ~SoundSystem(); + SoundContext(); + virtual ~SoundContext(); // singleton - static SoundSystem & get_instance(); - SoundSystem(const SoundSystem &) = delete; - SoundSystem(SoundSystem &&) = delete; - SoundSystem &operator=(const SoundSystem &) = delete; - SoundSystem &operator=(SoundSystem &&) = delete; + static SoundContext & get_instance(); + SoundContext(const SoundContext &) = delete; + SoundContext(SoundContext &&) = delete; + SoundContext &operator=(const SoundContext &) = delete; + SoundContext &operator=(SoundContext &&) = delete; private: SoLoud::Soloud engine; |