From 70f68a302f9dbd303e480f92ed1723cd633a4aad Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 28 Jun 2009 10:02:25 +0000 Subject: [PATCH] Added missing XML documentation. --- Source/OpenTK/Input/IInputDriver.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/OpenTK/Input/IInputDriver.cs b/Source/OpenTK/Input/IInputDriver.cs index 327ee1fa..594c1b31 100644 --- a/Source/OpenTK/Input/IInputDriver.cs +++ b/Source/OpenTK/Input/IInputDriver.cs @@ -10,8 +10,14 @@ using System.Text; namespace OpenTK.Input { + /// + /// Defines the interface for an input driver. + /// public interface IInputDriver : IKeyboardDriver, IMouseDriver, IJoystickDriver, IDisposable { + /// + /// Updates the state of the driver. + /// void Poll(); } }