about summary refs log tree commit diff stats
path: root/ext/wittle_generator/Random.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ext/wittle_generator/Random.cpp')
-rw-r--r--ext/wittle_generator/Random.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/wittle_generator/Random.cpp b/ext/wittle_generator/Random.cpp new file mode 100644 index 0000000..2248947 --- /dev/null +++ b/ext/wittle_generator/Random.cpp
@@ -0,0 +1,5 @@
1#include "Random.h"
2
3#include <time.h>
4
5std::mt19937 Random::gen = std::mt19937((int)time(0));