diff options
Diffstat (limited to 'Game.h')
| -rw-r--r-- | Game.h | 35 |
1 files changed, 35 insertions, 0 deletions
@@ -0,0 +1,35 @@ +#ifndef GAMEPLAY_H__ +#define GAMEPLAY_H__ + +/* ************************************** + * Includes * + * **************************************/ + +#include "HumanPlayer.h" +#include <stdint.h> + +/* ************************************** + * Defines * + * **************************************/ + +/* ************************************** + * Structs and enums * + * **************************************/ + +struct tGameConfig +{ + HumanPlayer* pHumanPlayerData; + uint8_t u8NHumanPlayers; +}; + +/* ************************************** + * Global prototypes * + * **************************************/ + +void Game(const struct tGameConfig& psGameConfig); + +/* ************************************** + * Global variables * + * **************************************/ + +#endif /* GAMEPLAY_H__ */ |
