This project implements a custom pseudo-random number generator (PRNG) using a Linear Congruential Generator (LCG) formula. It simulates dice rolls and allows the user to specify the number of rolls.
A nice addition would be to be able to set custom random sources. I see several reasons for that: Seed a random source to generate a stable set of fake data Use an alternate random generator, such as ...