diff options
| author | Ray <[email protected]> | 2020-01-27 15:31:43 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2020-01-27 15:31:43 +0100 |
| commit | 954f029118260dce867c1bf6ff3948ca6a6bee85 (patch) | |
| tree | bbed266f223c05513ffae13d6fccccaf327527ff /src/raylib.h | |
| parent | 4fa2c329068c681d483c58ff85d270aaf73513e4 (diff) | |
| download | raylib-954f029118260dce867c1bf6ff3948ca6a6bee85.tar.gz raylib-954f029118260dce867c1bf6ff3948ca6a6bee85.zip | |
Support touch/mouse indistinctly
REMOVED: IsTouchDetected()
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index ed13548d..2b5ff3e5 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1013,7 +1013,6 @@ RLAPI void SetMouseScale(float scaleX, float scaleY); // Set mouse scali RLAPI int GetMouseWheelMove(void); // Returns mouse wheel movement Y // Input-related functions: touch -RLAPI bool IsTouchDetected(void); // Detect if a touch has happened RLAPI int GetTouchX(void); // Returns touch position X for touch point 0 (relative to screen size) RLAPI int GetTouchY(void); // Returns touch position Y for touch point 0 (relative to screen size) RLAPI Vector2 GetTouchPosition(int index); // Returns touch position XY for a touch point index (relative to screen size) |
