Files
crystall-punk-14/Content.Client/Construction/ConstructionGhostComponent.cs

16 lines
445 B
C#
Raw Normal View History

using Content.Shared.Construction.Prototypes;
using Robust.Shared.GameObjects;
using Robust.Shared.ViewVariables;
2021-06-09 22:19:39 +02:00
namespace Content.Client.Construction
{
2019-07-31 15:02:36 +02:00
[RegisterComponent]
public class ConstructionGhostComponent : Component
{
public override string Name => "ConstructionGhost";
[ViewVariables] public ConstructionPrototype? Prototype { get; set; }
[ViewVariables] public int GhostId { get; set; }
}
}