fish-station/Content.Shared/_Sunrise/CopyMachine/PoolDocTemplate.cs

15 lines
423 B
C#

using Robust.Shared.Prototypes;
using Robust.Shared.Utility;
namespace Content.Shared._Sunrise.CopyMachine;
[Prototype]
public sealed partial class DocTemplatePoolPrototype : IPrototype
{
[IdDataField]
public string ID { get; private set; } = default!;
[DataField(required: true)]
public List<ProtoId<DocTemplatePrototype>> Templates = new();
[DataField] public SpriteSpecifier? StationGoalHeader;
}