using Robust.Shared.Prototypes;
using Robust.Shared.Utility;
namespace Content.Shared.Salvage;
[Prototype]
public sealed partial class SalvageMapPrototype : IPrototype
{
[ViewVariables] [IdDataField] public string ID { get; private set; } = default!;
///
/// Relative directory path to the given map, i.e. `Maps/Salvage/template.yml`
///
[DataField(required: true)] public ResPath MapPath;
///
/// String that describes the size of the map.
///
[DataField(required: true)]
public LocId SizeString;
}