2007-08-10 11:27:13 +02:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2007-08-03 02:14:31 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Input
|
|
|
|
|
{
|
2007-08-22 02:30:16 +02:00
|
|
|
|
public interface IInputDriver : IKeyboardDriver, IMouseDriver, IDisposable
|
2007-08-03 02:14:31 +02:00
|
|
|
|
{
|
2007-09-22 15:13:17 +02:00
|
|
|
|
//IList<IInputDevice> InputDevices { get; }
|
|
|
|
|
void Poll();
|
2007-08-03 02:14:31 +02:00
|
|
|
|
}
|
2007-08-10 11:27:13 +02:00
|
|
|
|
}
|