use of org.terasology.engine.world.block.internal.BlockManagerImpl in project Terasology by MovingBlocks.
the class ProcessBlockPrefabs method step.
@Override
public boolean step() {
BlockManagerImpl blockManager = (BlockManagerImpl) context.get(BlockManager.class);
blockManager.subscribe(new BlockPrefabManager(context.get(EntityManager.class), blockManager));
return true;
}
Aggregations