aboutsummaryrefslogtreecommitdiff
path: root/src/rand.hpp
diff options
context:
space:
mode:
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 {
+};