Add Project

This commit is contained in:
Allen Wolf
2024-01-09 20:25:25 -06:00
parent 9c772c6133
commit 5785b0ac54
25 changed files with 3350 additions and 3 deletions

25
KeyHandling.cs Executable file
View File

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace MacroBoard
{
public class KeyHandling
{
[Flags]
public enum KeyModifiers
{
None = 0,
LShift = 1 << 0,
RShift = 1 << 1,
LControl = 1 << 2,
RControl = 1 << 3,
LAlt = 1 << 4,
RAlt = 1 << 5,
LWin = 1 << 6,
RWin = 1 << 7
}
}
}