mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-13 13:15:40 +00:00
8f159aef72
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();
|
|
}
|
|
}
|