/*===========================================================================
 *
 * DICE.H - 30 March 1999, Dave Humphrey
 *
 *=========================================================================*/
#ifndef __DICE_H
#define __DICE_H

	/* Required Include Files */
#include "genutil.h"
#include <math.h>


/*===========================================================================
 *
 * Begin Function Prototypes
 *
 *=========================================================================*/

	/* Global Function to roll a die and return numeric result */
  int RollDice (const char *pString);

	/* Rolls a specific, sided die a number of times */
  int RollDice (const int RollCount, const int NumSides);

/*===========================================================================
 *		End of Function Prototypes
 *=========================================================================*/

  
#endif
/*===========================================================================
 *		End of File DICE.H
 *=========================================================================*/