Stardew_Valley_Mods/GeneralMods/DailyQuestAnywhere/Framework/ModConfig.cs

13 lines
402 B
C#
Raw Normal View History

namespace Omegasis.DailyQuestAnywhere.Framework
{
/// <summary>The mod configuration.</summary>
internal class ModConfig
{
/// <summary>The key which shows the menu.</summary>
public string KeyBinding { get; set; } = "H";
/// <summary>The chance for a daily quest to actually happen.</summary>
public float chanceForDailyQuest { get; set; } = .75f;
}
}