From ef6959ed540cd650e13611c35ea543922ab83a98 Mon Sep 17 00:00:00 2001 From: Ray Date: Mon, 6 Dec 2021 19:53:09 +0100 Subject: [PATCH] ADDED: raylibVersion symbol #2190 --- src/rcore.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/rcore.c b/src/rcore.c index ba64d1db1..d24529873 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -487,6 +487,8 @@ static CoreData CORE = { 0 }; // Global CORE state context static char **dirFilesPath = NULL; // Store directory files paths as strings static int dirFileCount = 0; // Count directory files strings +const char *raylibVersion = RAYLIB_VERSION; // raylib version symbol, it could be required for some bindings + #if defined(SUPPORT_SCREEN_CAPTURE) static int screenshotCounter = 0; // Screenshots counter #endif