Started working on KeyboardBase api docs

This commit is contained in:
Elia Sulimanov 2020-06-17 22:53:59 +03:00
parent 7f7035b769
commit 69c75731ee

View file

@ -7,11 +7,17 @@
/// </summary>
public abstract void Initialize();
/// <summary>
/// Update keyboard LEDs.
/// </summary>
public abstract void UpdateLeds();
public delegate void KeyPressedEventHandler(byte ScanCode, bool Released);
public KeyPressedEventHandler OnKeyPressed;
/// <summary>
/// Wait for key to be pressed.
/// </summary>
public static void WaitForKey()
{
Core.Global.CPU.Halt();