28b4630f04
Major additions to Windows.API: Implemented all functions and structures for Raw Input.
12 lines
207 B
C#
12 lines
207 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Input
|
|
{
|
|
interface IKeyboard
|
|
{
|
|
bool this[Keys k] { get; set; }
|
|
void Poll();
|
|
}
|
|
}
|