Examples of DummyContainer


Examples of logisticspipes.utils.gui.DummyContainer

  @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
Copyright © 2018 www.massapi.com. 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.