mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +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);
|
|
}
|
|
}
|