enum | VSN::MouseButton {
VSN::mb_Control = 1 << 1
, VSN::mb_Shift = 1 << 2
, VSN::mb_Alt = 1 << 3
, VSN::mb_LButton = 1 << 4
,
VSN::mb_MButton = 1 << 5
, VSN::mb_RButton = 1 << 6
, VSN::mb_Right_Control = 1 << 7
, VSN::mb_Right_Shift = 1 << 8
,
VSN::mb_Right_Alt = 1 << 9
, VSN::mb_Left_Control = 1 << 10
, VSN::mb_Left_Shift = 1 << 11
, VSN::mb_Left_Alt = 1 << 12
,
VSN::mb_Left_Arrow = 1 << 13
, VSN::mb_Up_Arrow = 1 << 14
, VSN::mb_Right_Arrow = 1 << 15
, VSN::mb_Down_Arrow = 1 << 16
,
VSN::mb_Joystick_Button_1 = 1 << 17
, VSN::mb_Joystick_Button_2 = 1 << 18
, VSN::mb_Joystick_Button_3 = 1 << 19
, VSN::mb_Joystick_Button_4 = 1 << 20
,
VSN::mb_Joystick_Button_5 = 1 << 21
, VSN::mb_Joystick_Button_6 = 1 << 22
, VSN::mb_Joystick_Button_7 = 1 << 23
, VSN::mb_Joystick_Button_8 = 1 << 24
} |