Roses/Assets/Scripts/Domain/Win32API.cs
2024-04-14 18:50:25 +02:00

8 lines
No EOL
182 B
C#

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