Stardew_Valley_Mods/GeneralMods/SaveAnywhere/Framework/ModConfig.cs

10 lines
254 B
C#
Raw Normal View History

namespace Omegasis.SaveAnywhere.Framework
{
/// <summary>The mod configuration.</summary>
internal class ModConfig
{
/// <summary>The key which initiates a save.</summary>
public string SaveKey { get; set; } = "K";
}
}