| 123456789101112 |
- 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
- {
- [DataField("board", customTypeSerializer:typeof(PrototypeIdSerializer<EntityPrototype>))]
- public string? BoardPrototype;
- }
- }
|