mirror of
https://github.com/gwm17/Mask.git
synced 2024-11-13 14:08:49 -05:00
25 lines
380 B
C
25 lines
380 B
C
|
#ifndef RANDOMGENERATOR_H
|
||
|
#define RANDOMGENERATOR_H
|
||
|
|
||
|
#include <random>
|
||
|
|
||
|
namespace Mask {
|
||
|
|
||
|
class RandomGenerator {
|
||
|
public:
|
||
|
~RandomGenerator();
|
||
|
inline std::mt19937& GetGenerator() { return rng; }
|
||
|
|
||
|
inline static RandomGenerator& GetInstance() {
|
||
|
static RandomGenerator s_instance;
|
||
|
return s_instance;
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
RandomGenerator();
|
||
|
std::mt19937 rng;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|