feat: add configurable hotkeys to cycle tabs

Adds two configurable hotkeys (plus the required code infrastructure to
handle configurable hotkeys) for cycling the active chat tab forward by
one and backwards by one.
This commit is contained in:
Dean Sheather
2024-07-11 00:32:13 +10:00
parent ac45afcf4c
commit 352088dfed
8 changed files with 272 additions and 28 deletions
@@ -3,6 +3,7 @@ namespace ChatTwo.GameFunctions.Types;
[Flags]
internal enum ModifierFlag
{
None = 0,
Shift = 1 << 0,
Ctrl = 1 << 1,
Alt = 1 << 2,