Advertisement
czlowiekzgon

Untitled

Nov 28th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. #include "pch.h"
  2. #include <iostream>
  3. #include "Consigliere.h"
  4. #include "Assassin.h"
  5. #include "Dealer.h"
  6. #include "Boss.h"
  7. #include "Gang.h"
  8. #include "Menu.h"
  9. using namespace std;
  10.  
  11. int main()
  12. {
  13. /*string choice;
  14. cin >> choice;
  15. while (!atoi(choice.c_str()) && choice != "0") {
  16. cout << "podany rok nie jest liczba " << endl;
  17. cin >> choice;
  18. }
  19. cout << choice + choice << endl;*/
  20.  
  21.  
  22. Menu menu;
  23. menu.chooseMenu();
  24.  
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement