#include <stdlib.h>#include "Die.h"#include <time.h>Die::Die(unsigned int faces):	_faces(faces){}int Die::roll(){	return rand() % _faces + 1;}void Die::randomize(int seed){	if (seed == 0)	{	time_t now = time(NULL);		srand(now % 32763);	}	else		srand(seed);}; 