Package universalelectricity.core.block

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

Related Classes of universalelectricity.core.block.IElectricalStorage

Copyright © 2018 www.massapicom. 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.