mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
26 lines
460 B
C#
26 lines
460 B
C#
using Cosmos.HAL;
|
|
|
|
namespace Playground
|
|
{
|
|
public class MyKeyboard: Keyboard
|
|
{
|
|
public MyKeyboard()
|
|
{
|
|
}
|
|
|
|
protected override void Initialize()
|
|
{
|
|
//
|
|
}
|
|
|
|
protected override void HandleScancode(byte aScancode, bool aReleased)
|
|
{
|
|
//
|
|
}
|
|
|
|
public override void UpdateLeds()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
}
|