add packs resources (WIP)

This commit is contained in:
MihailRis
2024-07-11 10:32:05 +03:00
parent 30dd853044
commit ca8652ffab
13 changed files with 103 additions and 16 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef CONTENT_CONTENT_FWD_HPP_
#define CONTENT_CONTENT_FWD_HPP_
#include "../typedefs.hpp"
class Content;
class ContentPackRuntime;
enum class contenttype {
none, block, item, entity
};
enum class ResourceType : size_t {
CAMERA,
LAST=CAMERA
};
#endif // CONTENT_CONTENT_FWD_HPP_