mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-13 03:15:28 +00:00
c51a0b7a6a
Started VirtualKeus --> OpenTK.Input.Keys keymap . Removed Keyboard.Key set property.
15 lines
267 B
C#
15 lines
267 B
C#
#region --- License ---
|
|
/* Copyright (c) 2007 Stefanos Apostolopoulos
|
|
* See license.txt for license info
|
|
*/
|
|
#endregion
|
|
|
|
namespace OpenTK.Input
|
|
{
|
|
public interface IKeyboard
|
|
{
|
|
bool this[Keys k] { get; }
|
|
//void Poll();
|
|
}
|
|
}
|