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")]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class ComputerComponent : Component
|
2022-02-03 10:20:17 +11:00
|
|
|
{
|
|
|
|
|
[DataField("board", customTypeSerializer:typeof(PrototypeIdSerializer<EntityPrototype>))]
|
|
|
|
|
public string? BoardPrototype;
|
|
|
|
|
}
|
|
|
|
|
}
|