2021-06-21 02:13:54 +02:00
|
|
|
using Content.Shared.Construction.Prototypes;
|
2019-04-15 21:11:38 -06:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.ViewVariables;
|
2018-08-02 08:29:55 +02:00
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Client.Construction
|
2018-08-02 08:29:55 +02:00
|
|
|
{
|
2019-07-31 15:02:36 +02:00
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class ConstructionGhostComponent : Component
|
2018-08-02 08:29:55 +02:00
|
|
|
{
|
2021-03-10 14:48:29 +01:00
|
|
|
[ViewVariables] public ConstructionPrototype? Prototype { get; set; }
|
2018-08-02 08:29:55 +02:00
|
|
|
}
|
|
|
|
|
}
|