Examples of IItemFuse


Examples of electricexpansion.api.IItemFuse

       
        this.fontRenderer.drawString(StatCollector.translateToLocal("container.voltage") + ": " + displayVoltage, 65, 55, 4210752);
        if (this.tileEntity.getStackInSlot(0) != null)
        {
            ItemStack fuseStack = this.tileEntity.getStackInSlot(0);
            IItemFuse fuse = (IItemFuse) fuseStack.getItem();
            this.fontRenderer.drawString(this.tileEntity.getStackInSlot(0).getDisplayName(), 30, 18, 4210752);
            this.fontRenderer.drawString(StatCollector.translateToLocal(fuse.getUnlocalizedName(fuseStack)), 30, 18, 4210752);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.