Package electricexpansion.api.wires

Examples of electricexpansion.api.wires.IAdvancedConductor


                }
            }
           
            else if (that instanceof IAdvancedConductor)
            {
                IAdvancedConductor tileEntityWire = (IAdvancedConductor) that;
               
                if (tileEntityWire.getWireMaterial(that.getBlockMetadata()) == this.getWireMaterial(this.getBlockMetadata()))
                {
                   
                    if (((IConnector) that).canConnect(side.getOpposite()))
                    {
                        this.adjacentConnections[side.ordinal()] = that;
View Full Code Here

TOP

Related Classes of electricexpansion.api.wires.IAdvancedConductor

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.