-
Notifications
You must be signed in to change notification settings - Fork 0
/
GTN.h
42 lines (39 loc) · 881 Bytes
/
GTN.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 GTN_H
#define GTN_H
using namespace std;
#include <iostream>
class GTN{
private:
int random;
string players[4];
int p1Tries;
int p2Tries;
int p3Tries;
int p4Tries;
int p1Guess;
int p2Guess;
int p3Guess;
int p4Guess;
string winner;
string winner2;
string winner3;
public:
GTN();
void setPlayerOne(string);
void setPlayerTwo(string);
void setPlayerThree(string);
void setPlayerFour(string);
string getPlayerOne();
string getPlayerTwo();
string getPlayerThree();
string getPlayerFour();
int p1Turn();
int getP1Tries();
int p2Turn();
int getP2Tries();
int p3Turn();
int getP3Tries();
int p4Turn();
int getP4Tries();
};
#endif