feat: detect key in background

This commit is contained in:
Gerard Gascón 2024-04-12 15:40:45 +02:00
parent 3e34a7a048
commit 680481afad
13 changed files with 460 additions and 19 deletions

View file

@ -0,0 +1,6 @@
using System.Runtime.InteropServices;
public static class Win32API {
[DllImport("User32.dll")]
public static extern short GetAsyncKeyState(int vKey);
}