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