diff --git a/Source/OpenTK/Platform/IGameWindow.cs b/Source/OpenTK/Platform/IGameWindow.cs index 95329502..f519a3fe 100644 --- a/Source/OpenTK/Platform/IGameWindow.cs +++ b/Source/OpenTK/Platform/IGameWindow.cs @@ -26,7 +26,11 @@ namespace OpenTK.Platform event LoadEvent Load; bool IsExiting { get; } - IList Keyboard { get; } + //IList Keyboard { get; } + //IList Mouse { get; } + + OpenTK.Input.KeyboardDevice Keyboard { get; } + OpenTK.Input.MouseDevice Mouse { get; } } public delegate void UpdateFrameEvent(object sender, UpdateFrameEventArgs e);