using System; using System.Collections.Generic; using System.Text; namespace OpenTK.Input { interface IMouseDriver2 { /// /// Retrieves the MouseState for the default keyboard device. /// /// A structure containing the state of the mouse device. MouseState GetState(); /// /// Retrieves the MouseState for the specified keyboard device. /// /// The index of the keyboard device. /// A structure containing the state of the mouse device. MouseState GetState(int index); } }