Roses/Assets/Scripts/Win32API.cs
2024-04-12 15:40:45 +02:00

6 lines
No EOL
157 B
C#

using System.Runtime.InteropServices;
public static class Win32API {
[DllImport("User32.dll")]
public static extern short GetAsyncKeyState(int vKey);
}