Files
tbd-station-14/Content.Shared/Salvage/Expeditions/Modifiers/ISalvageMod.cs
chavonadelal 9e1e9b8c34 Localization of the Salvage Expedition Console (#30339)
* Localization of the Salvage Expedition Console

* Localization of the Salvage Expedition Console 2
2024-07-30 10:05:19 -04:00

15 lines
317 B
C#

namespace Content.Shared.Salvage.Expeditions.Modifiers;
public interface ISalvageMod
{
/// <summary>
/// Player-friendly version describing this modifier.
/// </summary>
LocId Description { get; }
/// <summary>
/// Cost for difficulty modifiers.
/// </summary>
float Cost { get; }
}