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
26 lines (22 sloc) 399 Bytes
//
// 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();
}