Opentk/Source/OpenTK/Input/IKeyboardDriver.cs
the_fiddler d423f6e94c Renamed InputDevices.cs to InputDriver.cs.
Added IMouseDriver.cs and WinRawMouse.
2007-08-04 13:28:16 +00:00

12 lines
200 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Input
{
public interface IKeyboardDriver
{
IList<Keyboard> Keyboard { get; }
}
}