mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
11 lines
317 B
C#
11 lines
317 B
C#
namespace Cosmos.System
|
|
{
|
|
// This class exists purely for testing purposes.
|
|
internal static class TestingHelpers
|
|
{
|
|
internal static void KeyboardAddFakeScanCode(byte aScanCode, bool aReleased)
|
|
{
|
|
HAL.Global.Keyboard.HandleFakeScanCode(aScanCode, aReleased);
|
|
}
|
|
}
|
|
}
|