2023-03-22 20:29:55 +11:00
|
|
|
namespace Content.Shared.Tiles;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Raised directed on a grid when attempting a floor tile placement.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ByRefEvent]
|
2025-05-16 21:54:27 -04:00
|
|
|
public record struct FloorTileAttemptEvent(Vector2i GridIndices, bool Cancelled = false);
|