using System; using System.Collections.Generic; using System.Text; using OpenTK.Input; namespace OpenTK.Platform.X11 { public class X11Input : IInputDriver { public X11Input(IntPtr windowHandle) { } #region --- IInputDriver Members --- #region public IList InputDevices public IList InputDevices { get { throw new Exception("The method or operation is not implemented."); } } #endregion #region public IList Keyboard public IList Keyboard { get { throw new Exception("The method or operation is not implemented."); } } #endregion #region public IList Mouse public IList Mouse { get { throw new Exception("The method or operation is not implemented."); } } #endregion #endregion } }