Files
tbd-station-14/Content.Shared/Tiles/FloorTileAttemptEvent.cs
Nemanja 6f809d1ad6 Allow protected grids to be repaired (#36989)
* Allow protected grids to be repaired

* Probably implement it

---------

Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
2025-05-17 11:54:27 +10: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);