Ejemplo n.º 1
0
        public uint sceKernelUtilsMt19937UInt(SceKernelUtilsMt19937Context *Context)
        {
            var Random = Randoms[(uint)Context];

            return((uint)Random.Next());
        }
Ejemplo n.º 2
0
 public int sceKernelUtilsMt19937Init(SceKernelUtilsMt19937Context *Context, uint Seed)
 {
     Randoms.Add((uint)Context, new Random((int)Seed));
     return(0);
 }