mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-02-22 22:10:47 +00:00
12 lines
225 B
Java
12 lines
225 B
Java
package com.hbm.blocks.machine;
|
|
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.block.material.Material;
|
|
|
|
public class BlockHadronPlating extends Block {
|
|
|
|
public BlockHadronPlating(Material mat) {
|
|
super(mat);
|
|
}
|
|
}
|