mirror of
https://github.com/gwm17/Mask.git
synced 2025-10-02 12:48:49 -04:00
12 lines
176 B
C++
12 lines
176 B
C++
#include "RandomGenerator.h"
|
|
|
|
namespace Mask {
|
|
|
|
RandomGenerator::RandomGenerator()
|
|
{
|
|
std::random_device rd;
|
|
rng.seed(rd());
|
|
}
|
|
|
|
RandomGenerator::~RandomGenerator() {}
|
|
} |