mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 07:15:28 +00:00
Started working around a subtle Mono error regarding types and properties.
This commit is contained in:
parent
afda045962
commit
24e986bc1a
|
@ -6,6 +6,6 @@ namespace OpenTK.Input
|
||||||
{
|
{
|
||||||
public interface IMouseDriver
|
public interface IMouseDriver
|
||||||
{
|
{
|
||||||
IList<Mouse> Mouse { get; }
|
IList<OpenTK.Input.Mouse> Mouse { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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; }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue