mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-13 09:35:31 +00:00
43a37e3ac2
Fixed marshalling in GetRawInputData.
15 lines
272 B
C#
15 lines
272 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; set; }
|
|
//void Poll();
|
|
}
|
|
}
|