mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-14 04:25:30 +00:00
21 lines
422 B
C#
21 lines
422 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
using OpenTK.Input;
|
|||
|
|
|||
|
namespace OpenTK.Platform.X11
|
|||
|
{
|
|||
|
public class X11Keyboard : IKeyboardDriver
|
|||
|
{
|
|||
|
#region --- IKeyboardDriver Members ---
|
|||
|
|
|||
|
public IList<Keyboard> Keyboard
|
|||
|
{
|
|||
|
get { throw new Exception("The method or operation is not implemented."); }
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|