diff options
| author | victorfisac <victorfisac@gmail.com> | 2016-01-05 13:58:20 +0100 |
|---|---|---|
| committer | victorfisac <victorfisac@gmail.com> | 2016-01-05 13:58:20 +0100 |
| commit | fe0cf8f9a9d6cafa40a1baf8b3cdace0268ccb82 (patch) | |
| tree | ff3e40072807b1a227fdbb46a6e8be04df7b859d /templates | |
| parent | 32508f6db1d3f3c070e80ea42e0a1244a4c88cab (diff) | |
| download | raylib-fe0cf8f9a9d6cafa40a1baf8b3cdace0268ccb82.tar.gz raylib-fe0cf8f9a9d6cafa40a1baf8b3cdace0268ccb82.zip | |
Added some comments and fixed spaces
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/android_project/jni/include/raylib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/android_project/jni/include/raylib.h b/templates/android_project/jni/include/raylib.h index 641eac4b..72211b59 100644 --- a/templates/android_project/jni/include/raylib.h +++ b/templates/android_project/jni/include/raylib.h @@ -589,7 +589,7 @@ int GetTouchY(void); // Returns touch positio Vector2 GetTouchPosition(void); // Returns touch position XY (relative to screen size) bool IsButtonPressed(int button); // Detect if an android physic button has been pressed bool IsButtonDown(int button); // Detect if an android physic button is being pressed -bool IsButtonReleased(int button); // Detect if an android physic button has been released +bool IsButtonReleased(int button); // Detect if an android physic button has been released //------------------------------------------------------------------------------------ // Gestures and Touch Handling Functions (Module: gestures) @@ -805,7 +805,7 @@ void SetMaterialNormalDepth(Material *material, float depth); // Set n //---------------------------------------------------------------------------------- // Physics System Functions (engine-module: physics) //---------------------------------------------------------------------------------- -void InitPhysics(); // Initialize all internal physics values +void InitPhysics(void); // Initialize all internal physics values void SetPhysics(Physics settings); // Set physics settings values using Physics data type to overwrite internal physics settings void AddRigidbody(int index, Rigidbody rigidbody); // Initialize a new rigidbody with parameters to internal index slot |
