diff options
Diffstat (limited to 'sdl2/bindings.scm')
-rw-r--r-- | sdl2/bindings.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sdl2/bindings.scm b/sdl2/bindings.scm index 9bf7913..43f0be6 100644 --- a/sdl2/bindings.scm +++ b/sdl2/bindings.scm @@ -807,6 +807,17 @@ RETURN-TYPE and accept arguments of ARG-TYPES." ;;; +;;; Mouse +;;; + +(define-public SDL_BUTTON_LEFT 1) +(define-public SDL_BUTTON_MIDDLE 2) +(define-public SDL_BUTTON_RIGHT 3) +(define-public SDL_BUTTON_X1 4) +(define-public SDL_BUTTON_X2 5) + + +;;; ;;; Timer ;;; |