mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-02-22 14:00:47 +00:00
14 lines
317 B
Java
14 lines
317 B
Java
package com.hbm.blocks.machine;
|
|
|
|
import com.hbm.blocks.generic.BlockToolConversion;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
public class BlockFusionComponent extends BlockToolConversion {
|
|
|
|
public BlockFusionComponent() {
|
|
super(Material.iron);
|
|
this.addVariant(".bscco_welded", ".blanket", ".motor");
|
|
}
|
|
}
|