aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/AssetManager.cpp
blob: 392575832d2553ba92a1f4f842c9e2d3a405bd6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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(); }