blob: fefbed991e9005c767cea5664b694ea66f5658d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#pragma once
#include <any>
#include <memory>
#include <string>
#include <unordered_map>
namespace crepe {
class AssetManager {
private:
std::unordered_map<std::string, std::any> asset_cache;
private:
AssetManager();
virtual ~AssetManager();
public:
AssetManager(const AssetManager &) = delete;
AssetManager(AssetManager &&) = delete;
AssetManager & operator=(const AssetManager &) = delete;
AssetManager & operator=(AssetManager &&) = delete;
static AssetManager & get_instance();
public:
template <typename asset>
std::shared_ptr<asset> cache(const std::string & file_path,
bool reload = false);
};
} // namespace crepe
#include "AssetManager.hpp"
|