1
0

SalvageMapPrototype.cs 586 B

123456789101112131415161718192021
  1. using Robust.Shared.Prototypes;
  2. using Robust.Shared.Utility;
  3. namespace Content.Shared.Salvage;
  4. [Prototype]
  5. public sealed partial class SalvageMapPrototype : IPrototype
  6. {
  7. [ViewVariables] [IdDataField] public string ID { get; private set; } = default!;
  8. /// <summary>
  9. /// Relative directory path to the given map, i.e. `Maps/Salvage/template.yml`
  10. /// </summary>
  11. [DataField(required: true)] public ResPath MapPath;
  12. /// <summary>
  13. /// String that describes the size of the map.
  14. /// </summary>
  15. [DataField(required: true)]
  16. public LocId SizeString;
  17. }