|
NAMEAG_MouseButton —
agar mouse button definitions
SYNOPSIS#include <agar/core.h> #include <agar/gui.h> DESCRIPTIONTheAG_MouseButton type describes a mouse button (or a
combination of mouse buttons):
typedef enum ag_mouse_button { AG_MOUSE_NONE = 0x00, AG_MOUSE_LEFT = 0x01, AG_MOUSE_MIDDLE = 0x02, AG_MOUSE_RIGHT = 0x03, AG_MOUSE_WHEELUP = 0x04, AG_MOUSE_WHEELDOWN = 0x05, AG_MOUSE_X1 = 0x06, AG_MOUSE_X2 = 0x07, AG_MOUSE_ANY = 0xff } AG_MouseButton; SEE ALSOAG_Intro(3), AG_Keyboard(3), AG_Widget(3), AG_Window(3)HISTORYTheAG_MouseButton type first appeared in Agar 1.4.
Visit the GSP FreeBSD Man Page Interface. |