mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-24 19:46:55 +00:00
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();
|
|
}
|
|
}
|