2007-08-03 02:14:31 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Input
|
|
|
|
|
{
|
2007-08-04 15:28:16 +02:00
|
|
|
|
public interface IInputDriver : IKeyboardDriver, IMouseDriver
|
2007-08-03 02:14:31 +02:00
|
|
|
|
{
|
|
|
|
|
IList<IInputDevice> InputDevices { get; }
|
2007-08-04 14:09:58 +02:00
|
|
|
|
//void ProcessEvents
|
2007-08-03 02:14:31 +02:00
|
|
|
|
//IEnumerable<IMouse> Mice { get; }
|
|
|
|
|
//IEnumerable<IHid> Hids { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|