| 20 | namespace PCGExRandom |
| 21 | { |
| 22 | FORCEINLINE static int ComputeSeed(const int A) |
| 23 | { |
| 24 | // From Epic git main, unexposed in 5.3 |
| 25 | return (A * 196314165U) + 907633515U; |
| 26 | } |
| 27 | |
| 28 | FORCEINLINE static int ComputeSeed(const int A, const int B) |
| 29 | { |
nothing calls this directly
no outgoing calls
no test coverage detected