Package crazypants.enderio.conduit.gas

Examples of crazypants.enderio.conduit.gas.GasConduitNetwork


    } else if(ILiquidConduit.class.isAssignableFrom(type)) {
      return new LiquidConduitNetwork();
    } else if(IItemConduit.class.isAssignableFrom(type)) {
      return new ItemConduitNetwork();
    } else if(IGasConduit.class.isAssignableFrom(type)) {
      return new GasConduitNetwork();
    } else if(IMEConduit.class.isAssignableFrom(type)) {
      return new MEConduitNetwork();
    }
    FMLCommonHandler.instance().raiseException(new Exception("Could not determine network type for class " + type), "ConduitUtil.createNetworkForType", false);
    return null;
View Full Code Here

TOP

Related Classes of crazypants.enderio.conduit.gas.GasConduitNetwork

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.