Implements a pseudo-random number generator using a 64 bit Fibonacci LFSR.
Example uses: * rng.seed() % maxAmount * (rng.seed() % 100) < probabilityOfEvent
Creates the LFSR, and initializes it by calling its seed function 64 times.
Shuffles the register's content, then returns it.
See Implementation
Implements a pseudo-random number generator using a 64 bit Fibonacci LFSR.
Example uses: * rng.seed() % maxAmount * (rng.seed() % 100) < probabilityOfEvent