VoxelEngine/src/content/content_fwd.hpp
2024-08-04 10:24:11 +03:00

17 lines
381 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_