MiniGame-Madness
menu.h
1 #ifndef MENU_H
2 #define MENU_H
3 
10 #include "ScreenBuffer.h"
11 #include "hangman.h"
12 #include "con4.h"
13 #include "maze.h"
14 #include "hnefatafl.h"
15 #include "wordScrambler.h"
16 #include "BattleshipGame.h"
17 #include "NaughtsxCrossess.h"
18 #include "chckrs.h"
19 #include <conio.h>
20 
21 
22 
27 class Menu {
28 private:
33  int startGame(int input);
34 
35 public:
36  static const int RETURN_TO_MENU = 0;
37  static const int EXIT_GAME = 1;
38 
42  int displayMenu();
43 };
44 
45 #endif // MENU_H
Contains the declaration of the Connect4 class and its member functions.
Contains the declaration of the Maze class and its member methods.
A class that represents the menu of the game.
Definition: menu.h:27
int displayMenu()
Function to display the menu.
Definition: menu.cpp:80