Add Project

This commit is contained in:
Allen Wolf
2024-01-09 20:48:30 -06:00
parent 95afd185f2
commit 88907760b5
27 changed files with 3707 additions and 0 deletions

25
src/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
}
}
}