mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
15 lines
468 B
C#
15 lines
468 B
C#
using Cosmos.Debug.Kernel;
|
|
|
|
namespace Cosmos.System
|
|
{
|
|
// This class exists purely for testing purposes.
|
|
internal static class TestingHelpers
|
|
{
|
|
internal static void KeyboardAddFakeScanCode(byte aScanCode, bool aReleased)
|
|
{
|
|
Global.mDebugger.Send("Before HandleFakeScanCode");
|
|
KeyboardManager.HandleFakeScanCode(aScanCode, aReleased);
|
|
Global.mDebugger.Send("After HandleFakeScanCode");
|
|
}
|
|
}
|
|
}
|