diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-01 17:21:37 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-01 17:21:37 +0200 |
commit | 311e98572c26750e4a4695079fa80ca5648d109e (patch) | |
tree | f28e18a0df9f39932b0e2e4ec292bf01cc7a661f /src/crepe/SoundSystem.h | |
parent | de288a859a631acf6aac10fad825cafaa3744dc9 (diff) |
implement remaining Sound functions
Diffstat (limited to 'src/crepe/SoundSystem.h')
-rw-r--r-- | src/crepe/SoundSystem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/SoundSystem.h b/src/crepe/SoundSystem.h index da3927a..34dd6c5 100644 --- a/src/crepe/SoundSystem.h +++ b/src/crepe/SoundSystem.h @@ -12,7 +12,7 @@ private: virtual ~SoundSystem(); // singleton - static SoundSystem & instance(); + static SoundSystem & get_instance(); SoundSystem(const SoundSystem &) = delete; SoundSystem(SoundSystem &&) = delete; SoundSystem &operator=(const SoundSystem &) = delete; |