6
StarHorizon_Public/Content.Shared/_NF/Construction/Components/ComputerWallmountBoardComponent.cs
2025-12-13 13:46:17 +03:00

14 lines
350 B
C#

using Robust.Shared.Prototypes;
namespace Content.Shared._NF.Construction.Components;
/// <summary>
/// Used for construction graphs in building wallmount computers.
/// </summary>
[RegisterComponent]
public sealed partial class ComputerWallmountBoardComponent : Component
{
[DataField]
public EntProtoId? Prototype { get; private set; }
}