More luv to computer cube block

This commit is contained in:
drcrazy 2017-09-07 01:04:20 +03:00
parent bc390fa0e0
commit 015fd889f2
3 changed files with 79 additions and 1 deletions

View file

@ -31,18 +31,22 @@ import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumHand;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import prospector.shootingstar.ShootingStar;
import prospector.shootingstar.model.ModelCompound;
import reborncore.api.tile.IMachineGuiHandler;
import reborncore.common.blocks.BlockMachineBase;
import techreborn.Core;
import techreborn.client.EGui;
import techreborn.client.TechRebornCreativeTab;
import techreborn.lib.ModInfo;
public class BlockComputerCube extends BlockMachineBase {
public BlockComputerCube(final Material material) {
public BlockComputerCube() {
super();
this.setUnlocalizedName("techreborn.computercube");
this.setCreativeTab(TechRebornCreativeTab.instance);
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/tier2_machines"));
}
@Override