* (Re)set the state of the random number generator. * @param seed the new state */
| 53 | * @param seed the new state |
| 54 | */ |
| 55 | void Randomizer::SetSeed(uint32_t seed) |
| 56 | { |
| 57 | this->state[0] = seed; |
| 58 | this->state[1] = seed; |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * (Re)set the state of the random number generators. |
no outgoing calls
no test coverage detected