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 ed9c9eac16
commit 4c725a098b
2 changed files with 2 additions and 2 deletions

View file

@ -6,6 +6,6 @@ namespace OpenTK.Input
{
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; }
}
public IList<Mouse> Mouse
public IList<OpenTK.Input.Mouse> Mouse
{
get { return inputDriver.Mouse; }
}