// // Created by caleb on 4/22/24. // #ifndef MP5_CALEBFONTENOT_TRIVIAGAME_H #define MP5_CALEBFONTENOT_TRIVIAGAME_H #include #include class TriviaGame { public: static void triviaGameLoop(); struct TriviaQuestion { std::string triviaQuestion; std::vector triviaOptions; int correctQuestion; TriviaQuestion(std::string triviaQuestion, std::vector triviaOptions, int correctQuestion); }; }; #endif //MP5_CALEBFONTENOT_TRIVIAGAME_H