Renamed Keyboard/Mouse to Keyboard-/MouseDevice. Avoids name clashes.
This commit is contained in:
parent
6b3d358abd
commit
9ade72ad34
2 changed files with 2 additions and 2 deletions
|
@ -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