*/
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 );
}
}