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