| 15 | bool DUtils::Random::m_already_seeded = false; |
| 16 | |
| 17 | void DUtils::Random::SeedRand() { |
| 18 | Timestamp time; |
| 19 | time.setToCurrentTime(); |
| 20 | srand((unsigned)time.getFloatTime()); |
| 21 | } |
| 22 | |
| 23 | void DUtils::Random::SeedRandOnce() { |
| 24 | if (!m_already_seeded) { |
nothing calls this directly
no test coverage detected