mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-07 02:08:17 +02:00
10 lines
355 B
C#
10 lines
355 B
C#
namespace Robust.Shared.Map
|
|
{
|
|
/// <summary>
|
|
/// Invoked when a grid is altered.
|
|
/// </summary>
|
|
/// <param name="mapId">Passed to the delegate given it may no longer be retrievable.</param>
|
|
/// <param name="gridId">The index of the grid being changed.</param>
|
|
public delegate void GridEventHandler(MapId mapId, GridId gridId);
|
|
}
|