using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Input
{
///
/// Provides access to mouse devices.
///
public static class Mouse
{
#region Fields
static IMouseDriver driver;
#endregion
#region Constructors
static Mouse()
{
}
#endregion
#region Public Members
///
/// Retrieves the MouseState for the specified mouse device.
///
/// The index of the mouse device.
/// A structure containing the state of the mouse device.
public static MouseState GetState(int index)
{
throw new NotImplementedException();
}
#endregion
}
}