make KeyboardButton.KeyCode public

pull/50/head
cosmonaut 2023-06-09 16:17:41 -07:00
parent b1fe7f96b2
commit bd3e70b096
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ namespace MoonWorks.Input
public class KeyboardButton : VirtualButton
{
Keyboard Parent;
KeyCode KeyCode;
public KeyCode KeyCode { get; }
internal KeyboardButton(Keyboard parent, KeyCode keyCode)
{