A few remarks about hw8: Problem 1: - the wait1sec() method is implemented this way: system("sleep 1"); (system is a C/C++ function that allows you to call a unix command. note its usage also with unix's "clear" command to clear the screen. sleep is a unix command that pauses a number of seconds) - the value() method should compute the total number of seconds - name Cooker's private data min and sec - use the main file provided on the web (note the overloaded >> operator). your cooker.h and cooker.cpp should work with this main file Problem 2: - the class interface (dice.h) to be used will be the one that results from Friday's class's discusssion - note that you're creating a class for the pair of dice, and not for a single die, nor for the game of craps; the main program is the craps simulator refer to Friday's discussion for more details Note that a Makefile for hw8 has been provided on the web for your convenience