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
//
// CreateTeam.h
// BasketBallGame
//
// Created by Suraj Mann on 02/03/2020.
// Copyright © 2020 Suraj Mann. All rights reserved.
//
#ifndef CreateTeam_h
#define CreateTeam_h
#endif /* CreateTeam_h */
#include <iostream>
#include <vector>
using namespace std;
/* this class will be used to create user players for the user team - Suraj */
// Creating class - Suraj
class CreateTeam
{
private:
// private vector for stbring players
std::vector<std::string> players_list;
public:
CreateTeam();
void create_players();
};