poCker
|
Contains a Player struct and related functions. More...
Go to the source code of this file.
Classes | |
struct | Player |
Represents a single player. More... | |
Macros | |
#define | SCORE_TABLE_SIZE 10 |
Defines the size of the scores array. | |
Functions | |
Player * | playerCreateNew () |
Creates a new Player struct. | |
Player * | playerCreateNewWithFunds (int) |
Creates a new Player struct instance and sets its funds value. | |
void | resetScores (Player *) |
Resets player's scores to an array of zeros. | |
Contains a Player struct and related functions.
Player * playerCreateNewWithFunds | ( | int | initial_funds | ) |
Creates a new Player struct instance and sets its funds value.
initial_funds | The amount of funds to be assigned. |
A rude remainder on why lack of polymorphism is a bit of a bummer.