#ifndef __GAMEPLAY_H__ #define __GAMEPLAY_H__ /* ************************************** * Includes * * **************************************/ #include "Global_Inc.h" #include "Player.h" /* ************************************** * Defines * * **************************************/ #define GAME_MAX_PLAYERS 1 /* ************************************** * Global prototypes * * **************************************/ void GameInit(void); /* ************************************** * Global variables * * **************************************/ extern Player GamePlayers[GAME_MAX_PLAYERS]; #endif // __GAMEPLAY_H__