Package appeng.api.events

Examples of appeng.api.events.GridTileLoadEvent


  @Override
  public void validate()
  {
    super.validate();
    MinecraftForge.EVENT_BUS.post(new GridTileLoadEvent(this, worldObj, getLocation()));
  }
View Full Code Here


  @Override
  public void validate()
  {
    super.validate();
    MinecraftForge.EVENT_BUS.post(new GridTileLoadEvent(this, worldObj, getLocation()));
  }
View Full Code Here

*/
public class AEProxy implements xk.xact.plugin.AEProxy {

  public void fireTileLoadEvent(IGridTileEntity tile) {
    try {
      MinecraftForge.EVENT_BUS.post( new GridTileLoadEvent( tile, tile.getWorld(), tile.getLocation() ) );
    } catch( Exception e ) {
      Utils.logException( "Unable to fire GridTileLoadEvent. Caused by: " + e.getMessage(), e, false );
    }
  }
View Full Code Here

TOP

Related Classes of appeng.api.events.GridTileLoadEvent

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.