Cosmos/source/Cosmos.System/TestingHelpers.cs
Matthijs ter Woord bf2a02caa6 Ongoing work
2015-08-10 12:43:36 -04:00

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);
}
}
}