Added missing XML documentation.

This commit is contained in:
the_fiddler 2009-06-28 10:02:25 +00:00
parent e2ddfe8289
commit ea387cd9b0

View file

@ -10,8 +10,14 @@ using System.Text;
namespace OpenTK.Input
{
/// <summary>
/// Defines the interface for an input driver.
/// </summary>
public interface IInputDriver : IKeyboardDriver, IMouseDriver, IJoystickDriver, IDisposable
{
/// <summary>
/// Updates the state of the driver.
/// </summary>
void Poll();
}
}