yaze 0.2.0
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
resource_manager.h
Go to the documentation of this file.
1#ifndef YAZE_APP_EDITOR_SYSTEM_RESOURCE_MANAGER_H
2#define YAZE_APP_EDITOR_SYSTEM_RESOURCE_MANAGER_H
3
4#include <cstddef>
5
6namespace yaze {
7namespace app {
8namespace editor {
9
10// System resource manager.
12 public:
15
16 void Load(const char* path);
17 void Unload(const char* path);
18 void UnloadAll();
19
20 size_t Count() const;
21
22 private:
23 size_t count_;
24};
25
26} // namespace editor
27} // namespace app
28} // namespace yaze
29
30#endif // YAZE_APP_EDITOR_SYSTEM_RESOURCE_MANAGER_H
void Load(const char *path)
void Unload(const char *path)
Definition common.cc:22