6
StarHorizon_Public/Content.Shared/Tiles/FloorTileAttemptEvent.cs
2026-01-24 12:49:55 +03:00

8 lines
235 B
C#

namespace Content.Shared.Tiles;
/// <summary>
/// Raised directed on a grid when attempting a floor tile placement.
/// </summary>
[ByRefEvent]
public record struct FloorTileAttemptEvent(Vector2i GridIndices, bool Cancelled = false);