Quellcode durchsuchen

Merge branch 'next' of https://github.com/seanpaultaylor/GamePlay into next

setaylor vor 13 Jahren
Ursprung
Commit
7278e9a34c
1 geänderte Dateien mit 8 neuen und 8 gelöschten Zeilen
  1. 8 8
      gameplay/src/Mouse.h

+ 8 - 8
gameplay/src/Mouse.h

@@ -16,14 +16,14 @@ public:
      */
     enum MouseEvent
     {
-        MOUSE_PRESS_LEFT_BUTTON = 3,
-        MOUSE_RELEASE_LEFT_BUTTON = 4,
-        MOUSE_PRESS_MIDDLE_BUTTON = 5,
-        MOUSE_RELEASE_MIDDLE_BUTTON = 6,
-        MOUSE_PRESS_RIGHT_BUTTON = 7,
-        MOUSE_RELEASE_RIGHT_BUTTON = 8,
-        MOUSE_MOVE = 9,
-        MOUSE_WHEEL = 10
+        MOUSE_PRESS_LEFT_BUTTON,
+        MOUSE_RELEASE_LEFT_BUTTON, 
+        MOUSE_PRESS_MIDDLE_BUTTON = 3,
+        MOUSE_RELEASE_MIDDLE_BUTTON = 4,
+        MOUSE_PRESS_RIGHT_BUTTON = 5,
+        MOUSE_RELEASE_RIGHT_BUTTON = 6,
+        MOUSE_MOVE = 7,
+        MOUSE_WHEEL = 8
     };