2019-09-17 16:08:45 -07:00
|
|
|
|
using Content.Shared.Construction;
|
2019-04-15 21:11:38 -06:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
using Robust.Shared.ViewVariables;
|
2018-08-02 08:29:55 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.GameObjects.Components.Construction
|
|
|
|
|
|
{
|
2019-07-31 15:02:36 +02:00
|
|
|
|
[RegisterComponent]
|
2018-08-02 08:29:55 +02:00
|
|
|
|
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; }
|
2018-08-02 08:29:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|