13 lines
436 B
C#
13 lines
436 B
C#
|
namespace Omegasis.MuseumRearranger.Framework
|
|||
|
{
|
|||
|
/// <summary>The mod configuration.</summary>
|
|||
|
internal class ModConfig
|
|||
|
{
|
|||
|
/// <summary>The key which shows the museum rearranging menu.</summary>
|
|||
|
public string ShowMenuKey { get; set; } = "R";
|
|||
|
|
|||
|
/// <summary>The key which toggles the inventory box when the menu is open.</summary>
|
|||
|
public string ToggleInventoryKey { get; set; } = "T";
|
|||
|
}
|
|||
|
}
|