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

17 lines
532 B
C#
Raw Normal View History

using Content.Shared.Construction;
using Robust.Shared.GameObjects;
using Robust.Shared.ViewVariables;
namespace Content.Client.GameObjects.Components.Construction
{
2019-07-31 15:02:36 +02:00
[RegisterComponent]
public class ConstructionGhostComponent : Component
{
public override string Name => "ConstructionGhost";
2018-09-09 15:34:43 +02:00
[ViewVariables] public ConstructionPrototype Prototype { get; set; }
[ViewVariables] public ConstructorComponent Master { get; set; }
[ViewVariables] public int GhostID { get; set; }
}
}