aboutsummaryrefslogtreecommitdiff
path: root/src/rand.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2025-05-17 14:13:10 -0700
committerrtk0c <[email protected]>2025-05-17 14:13:10 -0700
commit508c4ab81a7068986ae818768b1444bbbd83b9c7 (patch)
tree2caa6da7bd894ff765ed88302355b0e110aba587 /src/rand.hpp
parent03f4c32dd3a868c2ff1858b029429ca7929a11d7 (diff)
Wrap random source
Havne't dont too much investigation if PCG is a good choice; this give some freedom to move later
Diffstat (limited to 'src/rand.hpp')
-rw-r--r--src/rand.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/rand.hpp b/src/rand.hpp
new file mode 100644
index 0000000..3892988
--- /dev/null
+++ b/src/rand.hpp
@@ -0,0 +1,7 @@
+// Simple wrapper around the current random number generator of choice
+#pragma once
+
+#include "rand/pcg.hpp"
+
+struct RandomState : public Pcg32 {
+};