summaryrefslogtreecommitdiffhomepage
path: root/src/config.h
diff options
context:
space:
mode:
authorRay <[email protected]>2023-10-29 21:11:30 +0100
committerRay <[email protected]>2023-10-29 21:11:30 +0100
commitfc7dcff4a72e3ce9ea970ad4e03cfabed026fbad (patch)
treed061a3c13e1296478e13095d04c2927ea1e185e6 /src/config.h
parent09075d515af4fcf3caca8c494e7bcf71d64060da (diff)
downloadraylib-fc7dcff4a72e3ce9ea970ad4e03cfabed026fbad.tar.gz
raylib-fc7dcff4a72e3ce9ea970ad4e03cfabed026fbad.zip
ADDED: Pseudo-random numbers generator!
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h
index 96fdd065..c6d553a5 100644
--- a/src/config.h
+++ b/src/config.h
@@ -45,6 +45,8 @@
#define SUPPORT_CAMERA_SYSTEM 1
// Gestures module is included (rgestures.h) to support gestures detection: tap, hold, swipe, drag
#define SUPPORT_GESTURES_SYSTEM 1
+// Include pseudo-random numbers generator (rprand.h), based on Xoshiro128** and SplitMix64
+#define SUPPORT_RPRAND_GENERATOR 1
// Mouse gestures are directly mapped like touches and processed by gestures system
#define SUPPORT_MOUSE_GESTURES 1
// Reconfigure standard input to receive key inputs, works with SSH connection.