Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
//
// Menu.h
// BasketBallGame
//
// Created by Suraj Mann on 02/03/2020.
// Copyright © 2020 Suraj Mann. All rights reserved.
//
#ifndef Menu_h
#define Menu_h
#endif /* Menu_h */
#include <iostream>
#include <string>
#include <vector>
using namespace std;
// creating menu class - Suraj
class Menu
{
private:
std::string user_team_name;
std::vector<std::string> user_team_list;
public:
int choice;
//constructor method
Menu();
Menu(std::string user_team)
{
this->user_team_name = user_team;
}
// creating function for displaying menu
void display_Menu();
// creating function for first menu screen
int first_Menu();
int second_Menu();
};