FeatherMC/src/data/Registry.h

16 lines
194 B
C
Raw Normal View History

2020-08-13 04:10:44 +01:00
#pragma once
#include "IDMapper.h"
#include "block/state/BlockState.h"
namespace Feather
{
class Registry
{
public:
static IDMapper<BlockState> BLOCK_STATES;
static void Init();
};
}