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
30 lines (22 sloc) 437 Bytes
//
// NewScreen.h
// BasketBallGame
//
// Created by Suraj Mann on 24/02/2020.
// Copyright © 2020 Suraj Mann. All rights reserved.
//
#ifndef NewScreen_h
#define NewScreen_h
#endif /* NewScreen_h */
#include <stdlib.h>
#include <iostream>
#include <stdio.h>
//#include <conio.h>
/* class for clearing screen - Suraj */
using namespace std;
class NewScreen
{
public:
NewScreen();
void clear_screen();
};