forked from TAIGA/TAIGA
14 lines
212 B
Java
14 lines
212 B
Java
package blocks;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
public class BlockAdamantiteOre extends BasicBlock{
|
|
|
|
public BlockAdamantiteOre() {
|
|
super("adamantite_ore", Material.ROCK, 3.0f, 5.0f);
|
|
}
|
|
|
|
|
|
|
|
}
|