package de.ellpeck.naturesaura.blocks; import de.ellpeck.naturesaura.api.render.IVisualizable; import de.ellpeck.naturesaura.blocks.tiles.TileEntityMossGenerator; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; public class BlockMossGenerator extends BlockContainerImpl implements IVisualizable { public BlockMossGenerator() { super(Material.ROCK, "moss_generator", TileEntityMossGenerator.class, "moss_generator"); this.setSoundType(SoundType.STONE); this.setHardness(2.5F); } @Override @SideOnly(Side.CLIENT) public AxisAlignedBB getVisualizationBounds(World world, BlockPos pos) { return new AxisAlignedBB(pos).grow(2); } @Override @SideOnly(Side.CLIENT) public int getVisualizationColor(World world, BlockPos pos) { return 0x15702d; } }