mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 21:15:28 +00:00
20630278fb
Added all Raw Input structs, functions and enums in Windows.API. WinRawKeyboard implements IKeyboard using Raw Input on Windows.
13 lines
216 B
C#
13 lines
216 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Input
|
|
{
|
|
public interface IKeyboard
|
|
{
|
|
bool this[Keys k] { get; set; }
|
|
//void Poll();
|
|
}
|
|
}
|