* @brief Set the RNG seed * @param s RNG seed */
| 901 | * @param s RNG seed |
| 902 | */ |
| 903 | void SetRndSeed(int s) |
| 904 | { |
| 905 | SeedCount = 0; |
| 906 | sglGameSeed = s; |
| 907 | orgseed = s; |
| 908 | } |
| 909 | |
| 910 | /** |
| 911 | * @brief Get the current RNG seed |
no outgoing calls
no test coverage detected