Esempio n. 1
0
 public static int RandomInt(ref ulong seed, int min, int max)
 {
     return(Utils.RandomInt(ref seed, max - min) + min);
 }