mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
26 lines
560 B
Java
26 lines
560 B
Java
package com.hbm.blocks.machine;
|
|
|
|
import com.hbm.tileentity.machine.TileEntityITERStruct;
|
|
|
|
import net.minecraft.block.BlockContainer;
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.world.World;
|
|
|
|
public class BlockITERStruct extends BlockContainer {
|
|
|
|
public BlockITERStruct(Material mat) {
|
|
super(mat);
|
|
}
|
|
|
|
@Override
|
|
public TileEntity createNewTileEntity(World world, int meta) {
|
|
return new TileEntityITERStruct();
|
|
}
|
|
|
|
public boolean isOpaqueCube() {
|
|
|
|
return false;
|
|
}
|
|
}
|