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-04 14:09:58 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Input
|
|
|
|
|
{
|
|
|
|
|
public interface IKeyboardDriver
|
|
|
|
|
{
|
2007-08-04 15:28:16 +02:00
|
|
|
|
IList<Keyboard> Keyboard { get; }
|
2007-08-04 14:09:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|