Package buildcraft.api.statements

Examples of buildcraft.api.statements.IActionReceptor


        }
      } else {
        for (ForgeDirection side : ForgeDirection.VALID_DIRECTIONS) {
          TileEntity tile = pipe.container.getTile(side);
          if (tile instanceof IActionReceptor) {
            IActionReceptor recept = (IActionReceptor) tile;
            recept.actionActivated(action, slot.parameters);
          }
        }
      }
    }
View Full Code Here

TOP

Related Classes of buildcraft.api.statements.IActionReceptor

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.