mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-27 21:21:14 +00:00
13 lines
207 B
C#
13 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();
|
|||
|
}
|
|||
|
}
|