aboutsummaryrefslogtreecommitdiff
path: root/src/randomization/seed_generator.cpp
blob: 5d51e18ced20c5ecc4878767226085859668d243 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "seed_generator.hpp"

SeedGenerator::SeedGenerator(const std::shared_ptr<std::random_device> &random_device)
	: _random_device(random_device)
{
}

uint32_t SeedGenerator::random_seed() const
{
	return (*_random_device)();
}