Files
2024-11-19 11:48:21 +01:00

15 lines
449 B
C#

using Gley.UrbanSystem.Internal;
namespace Gley.TrafficSystem.Internal
{
public class GridEvents
{
public delegate void ActiveGridCellsChanged(CellData[] activeCells);
public static event ActiveGridCellsChanged OnActiveGridCellsChanged;
public static void TriggerActiveGridCellsChangedEvent(CellData[] activeCells)
{
OnActiveGridCellsChanged?.Invoke(activeCells);
}
}
}