Files
tbd-station-14/Content.Client/Construction/ConstructionGhostComponent.cs
2022-02-16 18:23:23 +11:00

14 lines
391 B
C#

using Content.Shared.Construction.Prototypes;
using Robust.Shared.GameObjects;
using Robust.Shared.ViewVariables;
namespace Content.Client.Construction
{
[RegisterComponent]
public sealed class ConstructionGhostComponent : Component
{
[ViewVariables] public ConstructionPrototype? Prototype { get; set; }
[ViewVariables] public int GhostId { get; set; }
}
}