Package appeng.tile.grindstone

Examples of appeng.tile.grindstone.TileGrinder


  }

  @Override
  public boolean onActivated(World w, int x, int y, int z, EntityPlayer p, int side, float hitX, float hitY, float hitZ)
  {
    TileGrinder tg = getTileEntity( w, x, y, z );
    if ( tg != null && !p.isSneaking() )
    {
      Platform.openGUI( p, tg, ForgeDirection.getOrientation( side ), GuiBridge.GUI_GRINDER );
      return true;
    }
View Full Code Here

TOP

Related Classes of appeng.tile.grindstone.TileGrinder

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.