Package logisticspipes.logic

Examples of logisticspipes.logic.LogicController


 
  @Override
  public Container getContainer(EntityPlayer player) {
    TileEntity pipe = this.getTile(player.getEntityWorld(), TileEntity.class);
    if(pipe instanceof ILogicControllerTile) {
      LogicController controller = ((ILogicControllerTile)pipe).getLogicController();
      DummyContainer dummy = new DummyContainer(player.inventory, null);
      dummy.addNormalSlotsForPlayerInventory(50, 190);
      return dummy;
    }
    return null;
View Full Code Here

TOP

Related Classes of logisticspipes.logic.LogicController

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.