aboutsummaryrefslogtreecommitdiff
path: root/src/randomization/seed_generator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/randomization/seed_generator.hpp')
-rw-r--r--src/randomization/seed_generator.hpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/randomization/seed_generator.hpp b/src/randomization/seed_generator.hpp
deleted file mode 100644
index 3584966..0000000
--- a/src/randomization/seed_generator.hpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-
-#include "interfaces/randomization.hpp"
-
-#include <yacppdic/auto_wirable.hpp>
-
-#include <random>
-
-class SeedGenerator : public ISeedGenerator,
- public yacppdic::AutoWirable<ISeedGenerator, SeedGenerator>
-{
-public:
- SeedGenerator() noexcept = default;
-
- [[nodiscard]] auto random_seed() noexcept -> uint32_t override;
-
-private:
- std::random_device _random_device;
-};