diff options
| author | raysan5 <raysan5@gmail.com> | 2016-06-14 12:01:57 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2016-06-14 12:01:57 +0200 |
| commit | 3d6be7fd8000bf7bd9da0b9ad8764021f86c0d01 (patch) | |
| tree | 77cc834c91d77588f4eb06c64281103188c3e860 /src/raylib.h | |
| parent | 47afda2549cdab0429047fcc64540a4ed5d0ede7 (diff) | |
| download | raylib-3d6be7fd8000bf7bd9da0b9ad8764021f86c0d01.tar.gz raylib-3d6be7fd8000bf7bd9da0b9ad8764021f86c0d01.zip | |
Added GetGestureDetected() again...
Required by gestures example....
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index 343e86f1..9120ddc4 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -650,6 +650,7 @@ void ProcessGestureEvent(GestureEvent event); // Process gesture event void UpdateGestures(void); // Update gestures detected (called automatically in PollInputEvents()) int GetTouchPointsCount(void); // Get touch points count +int GetGestureDetected(void); // Get latest detected gesture float GetGestureHoldDuration(void); // Get gesture hold time in milliseconds Vector2 GetGestureDragVector(void); // Get gesture drag vector float GetGestureDragAngle(void); // Get gesture drag angle |
