Examples of IElectricalStorage


Examples of universalelectricity.core.block.IElectricalStorage

            }
            else
            {
                if (te instanceof IElectricalStorage)
                {
                    IElectricalStorage tileStorage = (IElectricalStorage) te;
                    player.addChatMessage("Electric Expansion: " + ElectricityDisplay.getDisplay(tileStorage.getEnergyStored(), ElectricUnit.JOULES) + "/"
                            + ElectricityDisplay.getDisplay(tileStorage.getMaxEnergyStored(), ElectricUnit.JOULES));
                }
                if (te instanceof IElectrical)
                {
                    player.addChatMessage("Electric Expansion: " + ElectricityDisplay.getDisplay(((IElectrical) te).getVoltage(), ElectricUnit.VOLTAGE));
                }
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.