-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbollywood.h
42 lines (36 loc) · 873 Bytes
/
bollywood.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef BOLLYWOOD_H
#define BOLLYWOOD_H
class bollywood
{
private:
std::string movie;
char a[50];
int aalu;
public:
bollywood();
std::string read();
std::string selection(std::string line[]);
void print();
int getletter();
void chance(int a);
void hint();
void insertion(char b);
bool isCheck(char b);
bool isEqual();
void gameplay();
bollywood(std::string a);
//sparsh's:
void rules();
void newintro();
void intro();
void showBlinkingLights(std::string temp, int t);
void changeColour(int colour);
void clearScreen(int characterLength);
void gotoxy(short x, short y);
const int BLUE;// = 1;
const int GREEN;// = 2;
const int RED;// = 4;
const int WHITE;// = 15;
const int ORANGE;// = 6;
};
#endif // BOLLYWOOD_H