2017-08-06 03:51:44 +08:00
|
|
|
|
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";
|
2018-05-07 09:21:31 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The chance for a daily quest to actually happen.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public float chanceForDailyQuest { get; set; } = .75f;
|
2017-08-06 03:51:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|