using Robust.Shared.Prototypes; using Robust.Shared.Utility; namespace Content.Server.Salvage; [Prototype("salvageMap")] public sealed class SalvageMapPrototype : IPrototype { [ViewVariables] [IdDataField] public string ID { get; } = default!; /// /// Relative directory path to the given map, i.e. `Maps/Salvage/template.yml` /// [DataField("mapPath", required: true)] public ResPath MapPath; /// /// Name for admin use /// [DataField("name")] public string Name = string.Empty; }