Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1.  public Random()
  2.         : this(Environment.TickCount) {
  3.       }
  4.  
  5. //
  6.     public Random(int Seed) {
  7.         int ii;
  8.         int mj, mk;
  9.    
  10.         //Initialize our Seed array.
  11.         //This algorithm comes from Numerical Recipes in C (2nd Ed.)
  12.         mj = MSEED - Math.Abs(Seed);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement