FeatherMC/src/data/Registry.h

16 lines
194 B
C++

#pragma once
#include "IDMapper.h"
#include "block/state/BlockState.h"
namespace Feather
{
class Registry
{
public:
static IDMapper<BlockState> BLOCK_STATES;
static void Init();
};
}