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