aboutsummaryrefslogtreecommitdiff
path: root/src/game/generation_tracker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/generation_tracker.cpp')
-rw-r--r--src/game/generation_tracker.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/game/generation_tracker.cpp b/src/game/generation_tracker.cpp
new file mode 100644
index 0000000..0e137cb
--- /dev/null
+++ b/src/game/generation_tracker.cpp
@@ -0,0 +1,18 @@
+#include "generation_tracker.hpp"
+
+GenerationTracker::GenerationTracker(bool is_paused) noexcept : _is_paused(is_paused) {}
+
+uint32_t GenerationTracker::get_current_generation() const noexcept
+{
+ return _current_generation;
+}
+
+bool GenerationTracker::get_is_paused() const noexcept
+{
+ return _is_paused;
+}
+
+void GenerationTracker::set_is_paused(bool is_paused) noexcept
+{
+ _is_paused = is_paused;
+}