Stardew_Valley_Mods/GeneralMods/DailyQuestAnywhere/Framework/ModConfig.cs

15 lines
435 B
C#
Raw Normal View History

2019-01-06 15:21:06 +08:00
using StardewModdingAPI;
namespace Omegasis.DailyQuestAnywhere.Framework
{
/// <summary>The mod configuration.</summary>
internal class ModConfig
{
/// <summary>The key which shows the menu.</summary>
2019-01-06 15:21:06 +08:00
public SButton KeyBinding { get; set; } = SButton.H;
/// <summary>The chance for a daily quest to actually happen.</summary>
public float chanceForDailyQuest { get; set; } = .75f;
}
}