Package logisticspipes.interfaces

Examples of logisticspipes.interfaces.ISlotClick


    for(int y = 0;y < 3;y++) {
      for(int x = 0;x < 3;x++) {
        dummy.addDummySlot(i++, guiLeft + (x * 18) + 20, guiTop + (y * 18) + 15);
      }
    }
    dummy.addCallableSlotHandler(0, _table.resultInv, guiLeft + 101, guiTop + 33, new ISlotClick() {
      @Override
      public ItemStack getResultForClick() {
        return _table.getResultForClick();
      }
    });
View Full Code Here


        for(int Y = 0;Y < 3;Y++) {
          for(int X = 0;X < 3;X++) {
            dummy.addDummySlot(i++, 0, 0);
          }
        }
        dummy.addCallableSlotHandler(0, ((PipeBlockRequestTable)pipe.pipe).resultInv, 0, 0, new ISlotClick() {
          @Override
          public ItemStack getResultForClick() {
            return ((PipeBlockRequestTable)fpipe.pipe).getResultForClick();
          }
        });
View Full Code Here

TOP

Related Classes of logisticspipes.interfaces.ISlotClick

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.