mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-21 09:45:48 +08:00
16 lines
314 B
C#
16 lines
314 B
C#
using System;
|
|
|
|
namespace Gma.System.MouseKeyHook
|
|
{
|
|
public class KeyDownTxtEventArgs : EventArgs
|
|
{
|
|
public KeyEventArgsExt KeyEvent { get; }
|
|
public string Chars { get; }
|
|
|
|
public KeyDownTxtEventArgs(KeyEventArgsExt keyEvent, string chars)
|
|
{
|
|
KeyEvent = keyEvent;
|
|
Chars = chars ?? string.Empty;
|
|
}
|
|
}
|
|
} |