summaryrefslogtreecommitdiffhomepage
path: root/examples/web/core/core_random_values.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/web/core/core_random_values.c')
-rw-r--r--examples/web/core/core_random_values.c19
1 files changed, 16 insertions, 3 deletions
diff --git a/examples/web/core/core_random_values.c b/examples/web/core/core_random_values.c
index 8d6ae26..0fd805f 100644
--- a/examples/web/core/core_random_values.c
+++ b/examples/web/core/core_random_values.c
@@ -15,6 +15,10 @@
#include <emscripten/emscripten.h>
#endif
+#if defined(PLATFORM_ANDROID)
+ #include "android_native_app_glue.h"
+#endif
+
//----------------------------------------------------------------------------------
// Global Variables Definition
//----------------------------------------------------------------------------------
@@ -32,12 +36,20 @@ void UpdateDrawFrame(void); // Update and Draw one frame
//----------------------------------------------------------------------------------
// Main Enry Point
//----------------------------------------------------------------------------------
-int main()
+#if defined(PLATFORM_ANDROID)
+void android_main(struct android_app *app)
+#else
+int main(void)
+#endif
{
// Initialization
//--------------------------------------------------------------------------------------
+#if defined(PLATFORM_ANDROID)
+ InitWindow(screenWidth, screenHeight, app);
+#else
InitWindow(screenWidth, screenHeight, "raylib [core] example - generate random values");
-
+#endif
+
randValue = GetRandomValue(-8, 5); // Get a random integer number between -8 and 5 (both included)
#if defined(PLATFORM_WEB)
@@ -57,8 +69,9 @@ int main()
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
-
+#if !defined(PLATFORM_ANDROID)
return 0;
+#endif
}
//----------------------------------------------------------------------------------