Stardew_Valley_Mods/GeneralMods/BillboardAnywhere/Framework/ModConfig.cs

12 lines
300 B
C#
Raw Normal View History

2019-01-06 15:21:06 +08:00
using StardewModdingAPI;
namespace Omegasis.BillboardAnywhere.Framework
{
/// <summary>The mod configuration.</summary>
internal class ModConfig
{
/// <summary>The key which shows the billboard menu.</summary>
2019-01-06 15:21:06 +08:00
public SButton KeyBinding { get; set; } = SButton.B;
}
}