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

13 lines
342 B
C#
Raw Permalink 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 sealed partial class ConstructionGhostComponent : Component
{
[ViewVariables] public ConstructionPrototype? Prototype { get; set; }
}
}