6ccbfb266e
Added ProcessEvents() function to IInputDriver. Does nothing on WinRawInput, but is needed by X11Input
14 lines
No EOL
354 B
C#
14 lines
No EOL
354 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Input
|
|
{
|
|
public interface IInputDriver : IKeyboardDriver, IMouseDriver
|
|
{
|
|
IList<IInputDevice> InputDevices { get; }
|
|
void ProcessEvents();
|
|
//IEnumerable<IMouse> Mice { get; }
|
|
//IEnumerable<IHid> Hids { get; }
|
|
}
|
|
} |