* Saves the current seeds * @param storage Storage for saving */
| 53 | * @param storage Storage for saving |
| 54 | */ |
| 55 | inline void SaveRandomSeeds(SavedRandomSeeds *storage) |
| 56 | { |
| 57 | storage->random = _random; |
| 58 | storage->interactive_random = _interactive_random; |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Restores previously saved seeds |
no outgoing calls
no test coverage detected