diff options
| author | 2018-10-27 00:25:05 +0200 | |
|---|---|---|
| committer | 2018-11-09 23:47:36 +0100 | |
| commit | ab902d65c6640e7b388cc5d89588e2fc6b32759a (patch) | |
| tree | 57e27e01f8e4b89b1d16007be046a8994e250286 /die.cpp | |
| parent | 250431661bc4abb819bf790ff3348babfadf98b4 (diff) | |
| download | OneRoll-ab902d65c6640e7b388cc5d89588e2fc6b32759a.tar.gz OneRoll-ab902d65c6640e7b388cc5d89588e2fc6b32759a.zip | |
Clean up die class.
Diffstat (limited to 'die.cpp')
| -rw-r--r-- | die.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -29,13 +29,8 @@ Die::Die() : m_hasValue(false),m_displayStatus(false),m_highlighted(true),m_base(1),m_color(""),m_op(Die::PLUS)//,m_mt(m_randomDevice) { -// uint seed = quintptr(this) + QDateTime::currentDateTime().toMSecsSinceEpoch(); - - // qsrand(seed); - auto seed = std::chrono::high_resolution_clock::now().time_since_epoch().count(); m_rng = std::mt19937(quintptr(this)+seed); - } Die::Die(const Die& die) { |