15 lines
498 B
C#
15 lines
498 B
C#
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
namespace Content.Shared._NF.Construction.Components;
|
|
|
|
/// <summary>
|
|
/// Used for construction graphs in building tabletop computers.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class ComputerTabletopBoardComponent : Component
|
|
{
|
|
[DataField(customTypeSerializer: typeof(PrototypeIdSerializer<EntityPrototype>))]
|
|
public string? Prototype { get; private set; }
|
|
}
|