Files
VoxelEngine/src/content/content_fwd.hpp
T
2024-09-02 09:31:53 +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;