Files
tbd-station-14/Content.Client/Construction/ConstructionGhostComponent.cs
2023-09-11 09:42:41 +10:00

13 lines
342 B
C#

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