namespace OpenToolkit.GraphicsLibraryFramework
{
///
/// Specifies the buttons of a mouse.
///
public enum MouseButton : byte
{
///
/// The first button.
///
Button1 = 0,
///
/// The second button.
///
Button2 = 1,
///
/// The third button.
///
Button3 = 2,
///
/// The fourth button.
///
Button4 = 3,
///
/// The fifth button.
///
Button5 = 4,
///
/// The sixth button.
///
Button6 = 5,
///
/// The seventh button.
///
Button7 = 6,
///
/// The eighth button.
///
Button8 = 7,
///
/// The left mouse button. This corresponds to .
///
Left = Button1,
///
/// The right mouse button. This corresponds to .
///
Right = Button2,
///
/// The middle mouse button. This corresponds to .
///
Middle = Button3,
///
/// The highest mouse button available.
///
Last = Button8,
}
}