mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-24 09:15:10 +00:00
18 lines
474 B
C#
18 lines
474 B
C#
namespace Daybreak.Models
|
|
{
|
|
public sealed class KeyboardHookEventArgs
|
|
{
|
|
public bool Handled { get; set; }
|
|
public KeyboardState KeyboardState { get; }
|
|
public KeyboardInput KeyboardInput { get; }
|
|
|
|
public KeyboardHookEventArgs(
|
|
KeyboardState keyboardState,
|
|
KeyboardInput keyboardInput)
|
|
{
|
|
this.KeyboardState = keyboardState;
|
|
this.KeyboardInput = keyboardInput;
|
|
}
|
|
}
|
|
}
|