mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 15:35:38 +00:00
14 lines
336 B
C#
14 lines
336 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace OpenTK.Input
|
|||
|
{
|
|||
|
public interface IInputDriver
|
|||
|
{
|
|||
|
IList<IInputDevice> InputDevices { get; }
|
|||
|
IList<IKeyboard> Keyboards { get; }
|
|||
|
//IEnumerable<IMouse> Mice { get; }
|
|||
|
//IEnumerable<IHid> Hids { get; }
|
|||
|
}
|
|||
|
}
|