You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
2.1 KiB

2 years ago
2 years ago
2 years ago
2 years ago
  1. #ifndef QUIZPROJECT_H
  2. #define QUIZPROJECT_H
  3. void play_quizgame(void);
  4. void play_factorlie(void);
  5. void play_milliongame(void);
  6. void play_guessingGame(void);
  7. void play_guessTheWord(void);
  8. void displayWelcomeMessage(void);
  9. void displayGameInstructions(void);
  10. void displayLifelineInstructions(void);
  11. void displayInstructions(void);
  12. void displayGoodLuckMessage(void);
  13. void ask_questions(void);
  14. void ask_hard_questions(void);
  15. void fifty_fifty(int);
  16. void hint(int);
  17. void correct(int);
  18. void wrong(int);
  19. int score = 0;
  20. void printOutOption(char [][100], char [][100],char [], int, int, int[] );
  21. void looping(char [][100], char [][100], char [], int []);
  22. void displayThankYouMessage(void);
  23. int* randomNumber();
  24. void hintForHardQuestions(int);
  25. void feedbackForm(void);
  26. void displayCredits(void);
  27. void v_factorlie(void);
  28. void v_guessingGame(void);
  29. void v_guessTheWord(char word[], char guessed[]);
  30. void million_instructions();
  31. void million_exit(int million_a);
  32. //----smart_brain_header_begin-----
  33. void e_press_key_start(void);
  34. void e_display_instruction(void);
  35. void e_t_f_printQuestions(char [][100],char [], int []);
  36. void e_ask_questions(void);
  37. void e_smart_brain(void);
  38. bool e_true_false(char);
  39. void e_usr_answr(char [][100], char [], int, int,int []);
  40. void e_questions_r3(void);
  41. void e_printout_r3 (char [][100], char [][100]);
  42. int track_r2_score = 0;
  43. void guess_word_questions(void);
  44. void print_guess_word_question (char [][100], char [][100],char [][100], int []);
  45. void e_printout(char [][100], char [][100], int []);
  46. void e_anagram_questions(void);
  47. //----smart_brain_header_end-------
  48. //Epic Game Headers
  49. void B_displayWelcomeMessage(void);
  50. void B_username(void);
  51. void b_entertostart(void);
  52. void B_sayhello(char name[]);
  53. void B_userinfo(void);
  54. void B_displayGameInstructions(void);
  55. void B_show_time(void);
  56. int B_testround(void);
  57. int B_round1(void);
  58. int B_round2(void);
  59. int B_round3(void);
  60. int B_round4(void);
  61. int B_round5(void);
  62. int B_round6(void);
  63. int B_round7(void);
  64. int B_round8(void);
  65. int B_round9(void);
  66. int B_round10(void);
  67. void B_saythankyou(void);
  68. void rate(void);
  69. void B_write_review(void);
  70. #define NUM_QUESTIONS 5
  71. #define round 15
  72. #define MAX_LIVES 10
  73. #define MAX_WORD_LENGTH 20
  74. #endif