Stardew_Valley_Mods/GeneralMods/BillboardAnywhere/Framework/ModConfig.cs

12 lines
300 B
C#

using StardewModdingAPI;
namespace Omegasis.BillboardAnywhere.Framework
{
/// <summary>The mod configuration.</summary>
internal class ModConfig
{
/// <summary>The key which shows the billboard menu.</summary>
public SButton KeyBinding { get; set; } = SButton.B;
}
}