Package buildcraft.api.transport

Examples of buildcraft.api.transport.IPipe


    return new StatementParameterDirection();
    }

    @Override
    public void actionActivate(IStatementContainer container, IStatementParameter[] parameters) {
      IPipe pipe = ((Gate) container).getPipe();
   
      if (pipe != null && pipe instanceof Pipe) {
      PipeTransport transport = ((Pipe) pipe).transport;
      if (parameters[0] != null && parameters[0] instanceof StatementParameterDirection) {
        ForgeDirection side = ((StatementParameterDirection) parameters[0]).direction;
View Full Code Here

TOP

Related Classes of buildcraft.api.transport.IPipe

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.