6
StarHorizon_Public/Content.Shared/_NF/Construction/Components/ComputerTabletopBoardComponent.cs
2026-01-13 18:31:02 +02:00

14 lines
348 B
C#

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