Files

13 lines
437 B
C#
Raw Permalink Normal View History

2022-02-03 10:20:17 +11:00
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.Construction.Components
{
[RegisterComponent, ComponentProtoName("Computer")]
public sealed partial class ComputerComponent : Component
2022-02-03 10:20:17 +11:00
{
[DataField("board", customTypeSerializer:typeof(PrototypeIdSerializer<EntityPrototype>))]
public string? BoardPrototype;
}
}