mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-28 15:15:37 +00:00
33 lines
549 B
C#
33 lines
549 B
C#
|
using System;
|
||
|
using OpenTK.Input;
|
||
|
|
||
|
namespace OpenTK.Platform.SDL2
|
||
|
{
|
||
|
class Sdl2Keyboard : IKeyboardDriver2
|
||
|
{
|
||
|
public Sdl2Keyboard()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
#region IKeyboardDriver2 Members
|
||
|
|
||
|
public KeyboardState GetState()
|
||
|
{
|
||
|
return new KeyboardState();
|
||
|
}
|
||
|
|
||
|
public KeyboardState GetState(int index)
|
||
|
{
|
||
|
return new KeyboardState();
|
||
|
}
|
||
|
|
||
|
public string GetDeviceName(int index)
|
||
|
{
|
||
|
return String.Empty;
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
}
|
||
|
}
|
||
|
|