Files
MacroBoard/src/KeyHandling.cs
Allen Wolf 88907760b5 Add Project
2024-01-09 20:48:30 -06:00

26 lines
482 B
C#
Executable File

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
}
}
}