mirror of
https://github.com/babalae/better-genshin-impact
synced 2025-01-07 03:17:16 +08:00
16 lines
327 B
C#
16 lines
327 B
C#
using Vanara.PInvoke;
|
|
|
|
namespace Fischless.HotkeyCapture;
|
|
|
|
public class KeyPressedEventArgs : EventArgs
|
|
{
|
|
public User32.HotKeyModifiers Modifier { get; }
|
|
public Keys Key { get; }
|
|
|
|
public KeyPressedEventArgs(User32.HotKeyModifiers modifier, Keys key)
|
|
{
|
|
Modifier = modifier;
|
|
Key = key;
|
|
}
|
|
}
|