poCker
Loading...
Searching...
No Matches
ai.h
1#ifndef AI_H
2#define AI_H
3
4#include "player.h"
5#include "gamestate.h"
6#include "gamerules.h"
7
12unsigned char checkAvailableDecisions(const Player*, const GameState*, const GameRuleSet*);
13
14#endif // AI_H
Contains the GameRuleSet struct and functions related to its initialization through console prompts.
Contains the logic of a poker game in a form of DI'able functions. See their arrangement and implemen...
Contains a Player struct and related functions.
Represents a set of customizable rules of the poker game.
Definition gamerules.h:29
Represents the current state of a poker game.
Definition gamestate.h:19
Represents a single player.
Definition player.h:17