mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 16:25:27 +00:00
23 lines
784 B
C#
23 lines
784 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace OpenTK.Input
|
|||
|
{
|
|||
|
interface IMouseDriver2
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Retrieves the MouseState for the default keyboard device.
|
|||
|
/// </summary>
|
|||
|
/// <returns>A <see cref="OpenTK.Input.MouseState"/> structure containing the state of the mouse device.</returns>
|
|||
|
MouseState GetState();
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Retrieves the MouseState for the specified keyboard device.
|
|||
|
/// </summary>
|
|||
|
/// <param name="index">The index of the keyboard device.</param>
|
|||
|
/// <returns>A <see cref="OpenTK.Input.MouseState"/> structure containing the state of the mouse device.</returns>
|
|||
|
MouseState GetState(int index);
|
|||
|
}
|
|||
|
}
|