From f0b654b9bf3bc2a93c1f89d4cc3edcf77b948555 Mon Sep 17 00:00:00 2001 From: XaviDCR92 Date: Mon, 9 Jul 2018 19:26:13 +0200 Subject: Game has been restructured in favor of OOP --- Game.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Game.h (limited to 'Game.h') diff --git a/Game.h b/Game.h new file mode 100644 index 0000000..5021c87 --- /dev/null +++ b/Game.h @@ -0,0 +1,35 @@ +#ifndef GAMEPLAY_H__ +#define GAMEPLAY_H__ + +/* ************************************** + * Includes * + * **************************************/ + +#include "HumanPlayer.h" +#include + +/* ************************************** + * Defines * + * **************************************/ + +/* ************************************** + * Structs and enums * + * **************************************/ + +struct tGameConfig +{ + HumanPlayer* pHumanPlayerData; + uint8_t u8NHumanPlayers; +}; + +/* ************************************** + * Global prototypes * + * **************************************/ + +void Game(const struct tGameConfig& psGameConfig); + +/* ************************************** + * Global variables * + * **************************************/ + +#endif /* GAMEPLAY_H__ */ -- cgit v1.2.3