Examples of addUnmodifiableSlot()


Examples of logisticspipes.utils.gui.DummyContainer.addUnmodifiableSlot()

    for(int x=0;x<3;x++) {
      for(int y=0;y<3;y++) {
        dummy.addDummySlot(y*3 + x, 35 + x*18, 10 + y*18);
      }
    }
    dummy.addUnmodifiableSlot(0, crafter.resultInv, 125, 28);
    for(int y=0;y<2;y++) {
      for(int x=0;x<9;x++) {
        dummy.addNormalSlot(y*9 + x, crafter.inv, 8 + x*18, 80 + y*18);
      }
    }
 
View Full Code Here

Examples of logisticspipes.utils.gui.DummyContainer.addUnmodifiableSlot()

    for(int X=0;X<3;X++) {
      for(int Y=0;Y<3;Y++) {
        dummy.addDummySlot(Y*3 + X, 35 + X*18, 10 + Y*18);
      }
    }
    dummy.addUnmodifiableSlot(0, tile.resultInv, 125, 28);
    for(int Y=0;Y<2;Y++) {
      for(int X=0;X<9;X++) {
        dummy.addNormalSlot(Y*9 + X, tile.inv, 8 + X*18, 80 + Y*18);
      }
    }
 
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.