* (Re)set the state of the random number generators. * @param seed the new state */
| 63 | * @param seed the new state |
| 64 | */ |
| 65 | void SetRandomSeed(uint32_t seed) |
| 66 | { |
| 67 | _random.SetSeed(seed); |
| 68 | _interactive_random.SetSeed(seed * 0x1234567); |
| 69 | } |
| 70 | |
| 71 | #ifdef RANDOM_DEBUG |
| 72 | uint32_t Random(const std::source_location location) |
no test coverage detected