Started working around a subtle Mono error regarding types and properties.
This commit is contained in:
parent
ed9c9eac16
commit
4c725a098b
2 changed files with 2 additions and 2 deletions
|
@ -6,6 +6,6 @@ namespace OpenTK.Input
|
|||
{
|
||||
public interface IMouseDriver
|
||||
{
|
||||
IList<Mouse> Mouse { get; }
|
||||
IList<OpenTK.Input.Mouse> Mouse { get; }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -40,7 +40,7 @@ namespace OpenTK
|
|||
get { return inputDriver.Keyboard; }
|
||||
}
|
||||
|
||||
public IList<Mouse> Mouse
|
||||
public IList<OpenTK.Input.Mouse> Mouse
|
||||
{
|
||||
get { return inputDriver.Mouse; }
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue