2019-01-06 15:21:06 +08:00
|
|
|
using StardewModdingAPI;
|
|
|
|
|
2018-12-30 18:00:05 +08:00
|
|
|
namespace Omegasis.MuseumRearranger.Framework
|
2017-08-06 03:51:44 +08:00
|
|
|
{
|
|
|
|
/// <summary>The mod configuration.</summary>
|
|
|
|
internal class ModConfig
|
|
|
|
{
|
|
|
|
/// <summary>The key which shows the museum rearranging menu.</summary>
|
2019-01-06 15:21:06 +08:00
|
|
|
public SButton ShowMenuKey { get; set; } = SButton.R;
|
2017-08-06 03:51:44 +08:00
|
|
|
|
|
|
|
/// <summary>The key which toggles the inventory box when the menu is open.</summary>
|
2019-01-06 15:21:06 +08:00
|
|
|
public SButton ToggleInventoryKey { get; set; } = SButton.T;
|
2017-08-06 03:51:44 +08:00
|
|
|
}
|
|
|
|
}
|