Files
OldThink/Content.Server/Construction/Components/ComputerComponent.cs

13 lines
429 B
C#
Raw 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 class ComputerComponent : Component
{
[DataField("board", customTypeSerializer:typeof(PrototypeIdSerializer<EntityPrototype>))]
public string? BoardPrototype;
}
}