Package forestry.api.circuits

Examples of forestry.api.circuits.ICircuitBoard.onLoad()


    // See whether we have socketed stuff.
    ItemStack chip = sockets.getStackInSlot(0);
    if (chip != null) {
      ICircuitBoard chipset = ChipsetManager.circuitRegistry.getCircuitboard(chip);
      if (chipset != null)
        chipset.onLoad(this);
    }
  }

  /* ISOCKETABLE */
  @Override
 
View Full Code Here


    ItemStack chip = sockets.getStackInSlot(0);
    if (chip != null) {
      ICircuitBoard chipset = ChipsetManager.circuitRegistry.getCircuitboard(chip);
      if (chipset != null)
        chipset.onLoad(this);
    }
  }

  @Override
  public void writeToNBT(NBTTagCompound nbttagcompound) {
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.