mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-12-16 11:05:45 +00:00
14 lines
359 B
C#
14 lines
359 B
C#
using Microsoft.Xna.Framework.Input;
|
|
using System;
|
|
using static Capy64.Eventing.InputManager;
|
|
|
|
namespace Capy64.Eventing.Events;
|
|
|
|
public class KeyEvent : EventArgs
|
|
{
|
|
public int KeyCode { get; set; }
|
|
public string KeyName { get; set; }
|
|
public bool IsHeld { get; set; }
|
|
public Keys Key { get; set; }
|
|
public Modifiers Mods { get; set; }
|
|
}
|