using System; using System.Collections.Generic; using System.Text; namespace OpenTK.Input { public interface IInputDriver { IList InputDevices { get; } IList Keyboards { get; } //IEnumerable Mice { get; } //IEnumerable Hids { get; } } }