mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 19:35:28 +00:00
Renamed Keyboard/Mouse to Keyboard-/MouseDevice. Avoids name clashes.
This commit is contained in:
parent
6b3d358abd
commit
9ade72ad34
|
@ -12,6 +12,6 @@ namespace OpenTK.Input
|
||||||
{
|
{
|
||||||
public interface IKeyboardDriver
|
public interface IKeyboardDriver
|
||||||
{
|
{
|
||||||
IList<Keyboard> Keyboard { get; }
|
IList<KeyboardDevice> Keyboard { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,6 @@ namespace OpenTK.Input
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the list of available mouse devices.
|
/// Gets the list of available mouse devices.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
IList<Mouse> Mouse { get; }
|
IList<MouseDevice> Mouse { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue