00001 #region --- License ---
00002
00003
00004
00005 #endregion
00006
00007 using System;
00008 using System.Collections.Generic;
00009 using System.Text;
00010
00011 namespace OpenTK.Input
00012 {
00016 public interface IInputDevice
00017 {
00021 string Description { get; }
00022
00026 InputDeviceType DeviceType { get; }
00027 }
00028
00032 public enum InputDeviceType
00033 {
00037 Keyboard,
00041 Mouse,
00046 Hid
00047 }
00048 }