mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-27 00:31:03 +00:00
Added missing XML documentation.
This commit is contained in:
parent
4e28071a26
commit
70f68a302f
|
@ -10,8 +10,14 @@ using System.Text;
|
||||||
|
|
||||||
namespace OpenTK.Input
|
namespace OpenTK.Input
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Defines the interface for an input driver.
|
||||||
|
/// </summary>
|
||||||
public interface IInputDriver : IKeyboardDriver, IMouseDriver, IJoystickDriver, IDisposable
|
public interface IInputDriver : IKeyboardDriver, IMouseDriver, IJoystickDriver, IDisposable
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Updates the state of the driver.
|
||||||
|
/// </summary>
|
||||||
void Poll();
|
void Poll();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue