#pragma once #include "IDMapper.h" #include "RegistryMap.h" #include "block/state/BlockState.h" namespace Feather { class Block; class Registry { public: // Maps block Identifier to Block static RegistryMap BLOCKS; // Maps numeric ID to BlockState static IDMapper BLOCK_STATES; static void Init(); }; }