diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-01 17:23:33 +0200 |
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-01 17:23:33 +0200 |
| commit | fe9bf1344ceae0fac9144e4a28fdcdbcb2267850 (patch) | |
| tree | 95b48799ed8c062839361b61afdb596b189e2da3 /src/crepe/SoundSystem.h | |
| parent | 311e98572c26750e4a4695079fa80ca5648d109e (diff) | |
rename SoundSystem to SoundContext (1/2)
Diffstat (limited to 'src/crepe/SoundSystem.h')
| -rw-r--r-- | src/crepe/SoundSystem.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/crepe/SoundSystem.h b/src/crepe/SoundSystem.h deleted file mode 100644 index 34dd6c5..0000000 --- a/src/crepe/SoundSystem.h +++ /dev/null @@ -1,27 +0,0 @@ -#pragma once - -#include <soloud.h> - -#include "Sound.h" - -namespace crepe { - -class SoundSystem { -private: - SoundSystem(); - virtual ~SoundSystem(); - - // singleton - static SoundSystem & get_instance(); - SoundSystem(const SoundSystem &) = delete; - SoundSystem(SoundSystem &&) = delete; - SoundSystem &operator=(const SoundSystem &) = delete; - SoundSystem &operator=(SoundSystem &&) = delete; - -private: - SoLoud::Soloud engine; - friend class Sound; -}; - -} - |