14 lines
350 B
C#
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; }
|
|
}
|