diff options
| author | raysan5 <raysan5@gmail.com> | 2014-09-19 12:34:25 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2014-09-19 12:34:25 +0200 |
| commit | 42b7b117104b957414c371871a724019b8d0b59a (patch) | |
| tree | 05773c6809b410c0200ce8b94e48839a41d4dc76 /src/raylib.h | |
| parent | e915812730641e56efa4014eba2406f25b157615 (diff) | |
| download | raylib-42b7b117104b957414c371871a724019b8d0b59a.tar.gz raylib-42b7b117104b957414c371871a724019b8d0b59a.zip | |
Android: Added support for Tap gesture
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index 9c754952..4de67ba2 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -13,7 +13,8 @@ * Multiple textures support, including DDS and mipmaps generation * Basic 3d support for Shapes, Models, Heightmaps and Billboards * Powerful math module for Vector and Matrix operations [raymath] -* Audio loading and playing with streaming support +* Audio loading and playing with streaming support (WAV and OGG) +* Multiplatform support, including Android devices and Raspberry Pi * * Used external libs: * GLFW3 (www.glfw.org) for window/context management and input @@ -328,6 +329,7 @@ bool IsGamepadButtonUp(int gamepad, int button); // Detect if a gamepad b #endif #if defined(PLATFORM_ANDROID) +bool IsScreenTouched(void); // Detect screen touch event int GetTouchX(void); // Returns touch position X int GetTouchY(void); // Returns touch position Y Vector2 GetTouchPosition(void); // Returns touch position XY |
