aboutsummaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
Diffstat (limited to 'src/game')
-rw-r--r--src/game/options.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/game/options.hpp b/src/game/options.hpp
new file mode 100644
index 0000000..98360b8
--- /dev/null
+++ b/src/game/options.hpp
@@ -0,0 +1,10 @@
+#pragma once
+
+#include "randomization.hpp"
+
+#include <memory>
+
+struct GameOptions
+{
+ std::shared_ptr<RandomNumberGenerator> random_gen;
+};