Package buildcraft.transport.statements

Examples of buildcraft.transport.statements.TriggerPipeContents


      gateCopier = new ItemGateCopier();
      CoreProxy.proxy.registerItem(gateCopier);
     
      for (PipeContents kind : PipeContents.values()) {
        triggerPipe[kind.ordinal()] = new TriggerPipeContents(kind);
      }

      for (PipeWire wire : PipeWire.values()) {
        triggerPipeWireActive[wire.ordinal()] = new TriggerPipeSignal(true, wire);
        triggerPipeWireInactive[wire.ordinal()] = new TriggerPipeSignal(false, wire);
View Full Code Here

TOP

Related Classes of buildcraft.transport.statements.TriggerPipeContents

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.