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