Random.pkg 276 B

12345678910
  1. $#include "Random.h"
  2. /// Set the random seed. The default seed is 1.
  3. void SetRandomSeed(unsigned seed);
  4. /// Return the current random seed.
  5. unsigned GetRandomSeed();
  6. /// Return a random number between 0-32767. Should operate similarly to MSVC rand().
  7. int Rand();