mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
21 lines
420 B
C#
21 lines
420 B
C#
using Content.Shared.Actions;
|
||
using Content.Shared.Maps;
|
||
using Robust.Shared.Prototypes;
|
||
|
||
namespace Content.Shared.Mapping;
|
||
|
||
public sealed partial class StartPlacementActionEvent : InstantActionEvent
|
||
{
|
||
[DataField]
|
||
public EntProtoId? EntityType;
|
||
|
||
[DataField]
|
||
public ProtoId<ContentTileDefinition>? TileId;
|
||
|
||
[DataField]
|
||
public string? PlacementOption;
|
||
|
||
[DataField]
|
||
public bool Eraser;
|
||
}
|