mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
14 lines
336 B
Java
14 lines
336 B
Java
package com.hbm.blocks.machine;
|
|
|
|
import com.hbm.blocks.generic.BlockToolConversion;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
public class BlockICFComponent extends BlockToolConversion {
|
|
|
|
public BlockICFComponent() {
|
|
super(Material.iron);
|
|
this.addVariant(".vessel", ".vessel_welded", ".structure", ".structure_bolted");
|
|
}
|
|
}
|