Package powercrystals.minefactoryreloaded.tile.rednet

Examples of powercrystals.minefactoryreloaded.tile.rednet.TileEntityRedNetLogic.onInputsChanged()


  public void onInputsChanged(World world, int x, int y, int z, ForgeDirection side, int[] inputValues)
  {
    TileEntityRedNetLogic logic = (TileEntityRedNetLogic)world.getBlockTileEntity(x, y, z);
    if(logic != null)
    {
      logic.onInputsChanged(side, inputValues);
    }
  }
 
  @Override
  public void onInputChanged(World world, int x, int y, int z, ForgeDirection side, int inputValue)
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.