Add hotkey global switch

This commit is contained in:
2023-09-29 15:04:30 +08:00
parent 1c49c41b71
commit 749f324f7d
13 changed files with 414 additions and 236 deletions

View File

@@ -26,6 +26,18 @@ namespace GrasscutterTools.Utils
/// </summary>
internal class HotKeyItem
{
public HotKeyItem()
{
}
public HotKeyItem(string tag, string commands, string hotKey, bool isEnabled = true)
{
Tag = tag;
Commands = commands;
HotKey = hotKey;
IsEnabled = isEnabled;
}
/// <summary>
/// Gets or sets the hot key identifier.
/// </summary>