Package logisticspipes.logic.gui

Examples of logisticspipes.logic.gui.LogicLayoutGui


  @Override
  public Object getClientGui(EntityPlayer player) {
    TileEntity pipe = this.getTile(player.getEntityWorld(), TileEntity.class);
    if(pipe instanceof ILogicControllerTile) {
      return new LogicLayoutGui(((ILogicControllerTile)pipe).getLogicController(), player);
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of logisticspipes.logic.gui.LogicLayoutGui

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.