// // Created by caleb on 4/22/24. // #ifndef MP5_CALEBFONTENOT_DICEGAME_H #define MP5_CALEBFONTENOT_DICEGAME_H #include "Die.h" class DiceGame { private: static bool isRoundOver(); static std::string determineScore(); static int compareScores(); public: static void diceGameLoop(); }; #endif //MP5_CALEBFONTENOT_DICEGAME_H