* Localization of the Salvage Expedition Console * Localization of the Salvage Expedition Console 2
15 lines
317 B
C#
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; }
|
|
}
|