aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/AssetManager.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-14 14:06:18 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-14 14:06:18 +0100
commit431b0bd7c6c502b42bb5be5488371d8c475e7024 (patch)
treee077fe2365f3d441c2201f7cb3ab38920bf2b3ae /src/crepe/api/AssetManager.cpp
parent07adbf48e0781cd8c95983c1871a84b6160ee5bf (diff)
move some shit around
Diffstat (limited to 'src/crepe/api/AssetManager.cpp')
-rw-r--r--src/crepe/api/AssetManager.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/crepe/api/AssetManager.cpp b/src/crepe/api/AssetManager.cpp
deleted file mode 100644
index 3925758..0000000
--- a/src/crepe/api/AssetManager.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "util/Log.h"
-
-#include "AssetManager.h"
-
-using namespace crepe;
-
-AssetManager & AssetManager::get_instance() {
- static AssetManager instance;
- return instance;
-}
-
-AssetManager::~AssetManager() {
- dbg_trace();
- this->asset_cache.clear();
-}
-
-AssetManager::AssetManager() { dbg_trace(); }