NaturesAura/src/main/java/de/ellpeck/naturesaura/blocks/BlockFlowerGenerator.java

15 lines
479 B
Java
Raw Normal View History

2018-11-04 16:38:09 +01:00
package de.ellpeck.naturesaura.blocks;
import de.ellpeck.naturesaura.blocks.tiles.TileEntityFlowerGenerator;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
public class BlockFlowerGenerator extends BlockContainerImpl {
2018-11-20 19:59:18 +01:00
2018-11-04 16:38:09 +01:00
public BlockFlowerGenerator() {
super(Material.WOOD, "flower_generator", TileEntityFlowerGenerator.class, "flower_generator");
this.setSoundType(SoundType.WOOD);
this.setHardness(2F);
}
}