Advertisement
czlowiekzgon

menu g

Nov 28th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #pragma once
  2. #include <string>
  3. #include <iostream>
  4. #include "Gang.h"
  5. using namespace std;
  6. class Menu
  7. {
  8. private:
  9. Gang * ptrGang = nullptr;
  10. int choice;
  11.  
  12. public:
  13. Menu();
  14. ~Menu();
  15. void showMenu();
  16.  
  17. void showBossMenu();
  18. void showUnderbossMenu();
  19. void showGangMenu();
  20.  
  21. void chooseMenu();
  22. void chooseBossMenu();
  23. void chooseUnderbossMenu();
  24. void chooseGangMenu();
  25.  
  26.  
  27. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement