Quaternity
round.h
Go to the documentation of this file.
1 
8 #ifndef ROUND_H_
9 #define ROUND_H_
10 
11 #include <vector>
12 
17 struct Question {
18 
22  int player;
23 
27  int set;
28 
32  int card;
33 };
34 
39 typedef bool Answer;
40 
41 #endif /* ROUND_H_ */
bool Answer
An answer returned by a player. The answer is either true or false denoting he/she has or does not ha...
Definition: round.h:39
A question asked by a player. The player asks another player for a specific card from a certain set.
Definition: round.h:17
int set
The set the card which is asked belongs to.
Definition: round.h:27
int player
The player the question is asked to.
Definition: round.h:22
int card
The card in the set which is asked for.
Definition: round.h:32