summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRay <[email protected]>2021-12-06 19:53:09 +0100
committerRay <[email protected]>2021-12-06 19:53:09 +0100
commitef6959ed540cd650e13611c35ea543922ab83a98 (patch)
treeb0a65271a9439f1c2f3ef4905d4d72f4b25a04e3
parente7f48eb16be5fb29e5d639150edc137564f54f59 (diff)
downloadraylib-ef6959ed540cd650e13611c35ea543922ab83a98.tar.gz
raylib-ef6959ed540cd650e13611c35ea543922ab83a98.zip
ADDED: raylibVersion symbol #2190
-rw-r--r--src/rcore.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rcore.c b/src/rcore.c
index ba64d1db..d2452987 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