Files
VoxelEngine/src/content/content_fwd.hpp
T
2024-08-03 19:53:48 +03:00

17 lines
384 B
C++

#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 };
inline constexpr auto RESOURCE_TYPES_COUNT =
static_cast<size_t>(ResourceType::LAST) + 1;
#endif // CONTENT_CONTENT_FWD_HPP_