VoxelEngine/src/content/content_fwd.hpp
2024-08-14 01:23:14 +03:00

14 lines
302 B
C++

#pragma once
#include "typedefs.hpp"
class Content;
class ContentPackRuntime;
enum class ContentType { NONE, BLOCK, ITEM, ENTITY, GENERATOR };
enum class ResourceType : size_t { CAMERA, LAST = CAMERA };
inline constexpr auto RESOURCE_TYPES_COUNT =
static_cast<size_t>(ResourceType::LAST) + 1;