aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/AssetManager.cpp
blob: bf4217f9fb1731271a2709876b3e074776a6bf55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "AssetManager.h"
#include "util/log.h"

using namespace crepe::api;

AssetManager & AssetManager::get_instance() {
	static AssetManager instance;
	return instance;
}

AssetManager::~AssetManager() {
	dbg_trace();
	this->asset_cache.clear();
}

AssetManager::AssetManager() { dbg_trace(); }