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
//
// NewScreen.cpp
// BasketBallGame
//
// Created by Suraj Mann on 02/03/2020.
// Copyright © 2020 Suraj Mann. All rights reserved.
//
#include <iostream>
#include "NewScreen.h"
#include <stdlib.h>
#include <stdio.h>
//#include <conio.h>
using namespace std;
// Suraj
NewScreen::NewScreen()
{
}
// Fuaction for clearing screen - Suraj
void NewScreen::clear_screen()
{
clrscr();
}