mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 20:05:37 +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
|
|
}
|
|
}
|