namespace Robust.Shared.Map
{
///
/// Event delegate for the OnTileChanged event.
///
/// The ID of the grid being changed.
/// A reference to the new tile being inserted.
/// The old tile that is being replaced.
public delegate void TileChangedEventHandler(TileRef tileRef, Tile oldTile);
}