2025-05-28 19:52:11 +00:00
|
|
|
|
using Content.Shared.Actions;
|
|
|
|
|
|
using Content.Shared.Maps;
|
|
|
|
|
|
using Robust.Shared.Prototypes;
|
2023-09-08 18:16:05 -07:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Mapping;
|
|
|
|
|
|
|
|
|
|
|
|
public sealed partial class StartPlacementActionEvent : InstantActionEvent
|
|
|
|
|
|
{
|
2025-05-28 19:52:11 +00:00
|
|
|
|
[DataField]
|
|
|
|
|
|
public EntProtoId? EntityType;
|
2023-09-08 18:16:05 -07:00
|
|
|
|
|
2025-05-28 19:52:11 +00:00
|
|
|
|
[DataField]
|
|
|
|
|
|
public ProtoId<ContentTileDefinition>? TileId;
|
2023-09-08 18:16:05 -07:00
|
|
|
|
|
2025-05-28 19:52:11 +00:00
|
|
|
|
[DataField]
|
2023-09-08 18:16:05 -07:00
|
|
|
|
public string? PlacementOption;
|
|
|
|
|
|
|
2025-05-28 19:52:11 +00:00
|
|
|
|
[DataField]
|
2023-09-08 18:16:05 -07:00
|
|
|
|
public bool Eraser;
|
|
|
|
|
|
}
|