// © Copyright 1995. Joseph Bergin. All rights reserved.#ifndef __Dice__#define __Dice__class Dice;// A single die.  It may have any number of faces, even// a physically impossible number.  Randomize to get better// random behavior.  Without randomizing you get repeatable// results.  class Die{	public:		Die(unsigned int faces = 6);			int roll();		static void randomize(int seed = 0);	protected:		unsigned int _faces;};#endif// Dice may be used in all sorts of random experiments and// to consstruct more elaborate random variables.  