Opentk/Source/OpenTK/Input/IKeyboard.cs

13 lines
207 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Input
{
interface IKeyboard
{
bool this[Keys k] { get; set; }
void Poll();
}
}