Updated IMouse interface. Updated InputDriver implementation of IInputDriver.

This commit is contained in:
the_fiddler 2007-08-05 09:59:42 +00:00
parent 47a3a3f62c
commit ed9c9eac16

View file

@ -30,7 +30,7 @@ namespace OpenTK
#region --- IInputDriver Members ---
IList<IInputDevice> IInputDriver.InputDevices
public IList<IInputDevice> InputDevices
{
get { return inputDriver.InputDevices; }
}
@ -40,7 +40,7 @@ namespace OpenTK
get { return inputDriver.Keyboard; }
}
IList<Mouse> IMouseDriver.Mouse
public IList<Mouse> Mouse
{
get { return inputDriver.Mouse; }
}