Quaternity
validate.h
Go to the documentation of this file.
1 
8 #ifndef VALIDATE_H_
9 #define VALIDATE_H_
10 
11 #include "round.h"
12 #include "settings.h"
13 #include "state.h"
14 
15 bool *valid_question(const Settings &settings, const State &state, const Question &question);
16 
17 #endif /* VALIDATE_H_ */
This file defines the structs for a question and typedef of an answer.
This file defines the settings struct.
This file defines the structs for a card, player and a game state, plus a state initialize and copy f...
A question asked by a player. The player asks another player for a specific card from a certain set.
Definition: round.h:17
The settings which characterize a game.
Definition: settings.h:22
The complete game state.
Definition: state.h:57
bool * valid_question(const Settings &settings, const State &state, const Question &question)
Check if the question asked is valid.
Definition: validate.cpp:89