MoonWorks/src/Input/VirtualButtons/KeyboardButton.cs

22 lines
414 B
C#
Raw Normal View History

2022-07-12 23:09:23 +00:00
using System.Runtime.InteropServices;
namespace MoonWorks.Input
{
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));
}
}
}