Files
wwdpublic/Content.Client/Construction/ConstructionGhostComponent.cs
Kyle Tyo dca0821d22 Fix build ghosts not being placeable on a new round. (#35097)
(cherry picked from commit aca846c6add9db7b8d495f2d0547758cd0d0c55a)
2025-10-04 12:51:22 +03:00

14 lines
383 B
C#

using Content.Shared.Construction.Prototypes;
using Robust.Shared.GameObjects;
using Robust.Shared.ViewVariables;
namespace Content.Client.Construction
{
[RegisterComponent]
public sealed partial class ConstructionGhostComponent : Component
{
public int GhostId { get; set; }
[ViewVariables] public ConstructionPrototype? Prototype { get; set; }
}
}