2019-11-30 06:22:20 +08:00
|
|
|
using Microsoft.Xna.Framework;
|
2019-01-06 15:21:06 +08:00
|
|
|
using StardewModdingAPI;
|
|
|
|
|
2018-12-30 18:00:05 +08:00
|
|
|
namespace Omegasis.BillboardAnywhere.Framework
|
2017-08-06 03:51:44 +08:00
|
|
|
{
|
|
|
|
/// <summary>The mod configuration.</summary>
|
|
|
|
internal class ModConfig
|
|
|
|
{
|
|
|
|
/// <summary>The key which shows the billboard menu.</summary>
|
2019-11-30 06:22:20 +08:00
|
|
|
public SButton CalendarKeyBinding { get; set; } = SButton.B;
|
|
|
|
/// <summary>The key which shows the quest menu.</summary>
|
|
|
|
public SButton QuestBoardKeyBinding { get; set; } = SButton.H;
|
|
|
|
/// <summary>The offset for the calendar button from the active menu</summary>
|
|
|
|
public Vector2 CalendarOffsetFromMenu { get; set; } = new Vector2(-100, 0);
|
|
|
|
/// <summary>The offset for the quest button from the active menu</summary>
|
|
|
|
public Vector2 QuestOffsetFromMenu { get; set; } = new Vector2(-200, 0);
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// If true the calendar button is enabled for the in-game menu.
|
|
|
|
/// </summary>
|
|
|
|
public bool EnableInventoryCalendarButton { get; set; } = true;
|
|
|
|
/// <summary>
|
|
|
|
/// If true the quest button is enabled for the in-game menu.
|
|
|
|
/// </summary>
|
|
|
|
public bool EnableInventoryQuestButton { get; set; } = true;
|
2017-08-06 03:51:44 +08:00
|
|
|
}
|
|
|
|
}
|