#ifndef CLOCKMISC_H
#define CLOCKMISC_H

//<TODO> Move this into clock.h

// Generate a truely random number.
//   For example when a game starts you want
//   to have a truely random number so the play
//   is not repeated.
int generateRandomSeed(double const waitms);

/** Use time C library call srand( time(NULL). */
void generateRandomSeed();

#endif


