MoonWorks/src/Input/VirtualButtons/KeyboardButton.cs

25 lines
503 B
C#
Raw Normal View History

2022-07-12 23:09:23 +00:00
using System.Runtime.InteropServices;
namespace MoonWorks.Input
{
/// <summary>
/// A virtual button corresponding to a keyboard button.
/// </summary>
2022-07-12 23:09:23 +00:00
public class KeyboardButton : VirtualButton
{
Keyboard Parent;
2023-06-09 23:17:41 +00:00
public KeyCode KeyCode { get; }
2022-07-12 23:09:23 +00:00
internal KeyboardButton(Keyboard parent, KeyCode keyCode)
{
Parent = parent;
KeyCode = keyCode;
}
internal override bool CheckPressed()
{
return Conversions.ByteToBool(Marshal.ReadByte(Parent.State, (int) KeyCode));
}
}
}