Started working around a subtle Mono error regarding types and properties.

This commit is contained in:
the_fiddler 2007-08-05 10:07:59 +00:00
parent afda045962
commit 24e986bc1a
2 changed files with 2 additions and 2 deletions

View file

@ -6,6 +6,6 @@ namespace OpenTK.Input
{ {
public interface IMouseDriver public interface IMouseDriver
{ {
IList<Mouse> Mouse { get; } IList<OpenTK.Input.Mouse> Mouse { get; }
} }
} }

View file

@ -40,7 +40,7 @@ namespace OpenTK
get { return inputDriver.Keyboard; } get { return inputDriver.Keyboard; }
} }
public IList<Mouse> Mouse public IList<OpenTK.Input.Mouse> Mouse
{ {
get { return inputDriver.Mouse; } get { return inputDriver.Mouse; }
} }