Skip to content
Permalink
e7e8a75a86
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
28 lines (23 sloc) 519 Bytes
//
// main.cpp
// BasketBallGame
//
// Created by Suraj Mann on 21/02/2020.
// Copyright © 2020 Suraj Mann. All rights reserved.
//
#include <iostream>
#include "login.h"
#include "Menu.h"
#include "NewScreen.h"
#include "CreateTeam.h"
int main()
{
Menu display_Menu;
Menu first_Menu, second_Menu;
Login set_user_credentials;
CreateTeam create_players;
display_Menu.display_Menu();
first_Menu.first_Menu();
second_Menu.second_Menu();
create_players.create_players();
}