mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 07:35:31 +00:00
12 lines
201 B
C#
12 lines
201 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace OpenTK.Input
|
|||
|
{
|
|||
|
public interface IKeyboardDriver
|
|||
|
{
|
|||
|
IList<Keyboard> Keyboards { get; }
|
|||
|
}
|
|||
|
}
|