// Scoresheet.h // Contains Scoresheet class declaration #include "Die.h" enum Scoring_option{Aces=1, Twos, Threes, Fours, Fives, Sixes, Three_of_a_kind, Four_of_a_kind, Full_house, Low_straight, High_straight, Yahtzee, Chance}; class Scoresheet { public: Scoresheet(); bool check_valid_option(int); void select_scoring_option(int[], Scoring_option); void display(); int get_total_score(); private: bool option_played[13]; int option_score[13]; };