Package crazypants.enderio.conduit.redstone

Examples of crazypants.enderio.conduit.redstone.RedstoneConduitNetwork


  public static final Random RANDOM = new Random();

  public static AbstractConduitNetwork<?, ?> createNetworkForType(Class<? extends IConduit> type) {
    if(IRedstoneConduit.class.isAssignableFrom(type)) {
      return new RedstoneConduitNetwork();
    } else if(IPowerConduit.class.isAssignableFrom(type)) {
      return new PowerConduitNetwork();
    } else if(EnderLiquidConduit.class.isAssignableFrom(type)) {
      return new EnderLiquidConduitNetwork();
    } else if(AdvancedLiquidConduit.class.isAssignableFrom(type)) {
View Full Code Here

TOP

Related Classes of crazypants.enderio.conduit.redstone.RedstoneConduitNetwork

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.