aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/SoundContext.cpp
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2024-10-01 21:22:30 +0200
committerheavydemon21 <nielsstunnebrink1@gmail.com>2024-10-01 21:22:30 +0200
commite0ea870fdfcfbe9e3f0e47215bb809d4353d88e2 (patch)
tree16f694c46ec4b76019187322da2bdd87906bf5ba /src/crepe/SoundContext.cpp
parent7230b630025886939c726e07eba1a0b35511f687 (diff)
removed submodule and updating resource_manager
Diffstat (limited to 'src/crepe/SoundContext.cpp')
-rw-r--r--src/crepe/SoundContext.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/crepe/SoundContext.cpp b/src/crepe/SoundContext.cpp
deleted file mode 100644
index 72047d2..0000000
--- a/src/crepe/SoundContext.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include "util/log.h"
-
-#include "SoundContext.h"
-
-using namespace crepe;
-
-SoundContext & SoundContext::get_instance() {
- static SoundContext instance;
- return instance;
-}
-
-SoundContext::SoundContext() {
- dbg_trace();
- engine.init();
-}
-
-SoundContext::~SoundContext() {
- dbg_trace();
- engine.deinit();
-}