diff options
| author | XaviDCR92 <xavi.dcr@gmail.com> | 2017-03-07 20:57:09 +0100 |
|---|---|---|
| committer | XaviDCR92 <xavi.dcr@gmail.com> | 2017-03-07 20:57:09 +0100 |
| commit | 8ec41b4410aba535008daf991ea59a8740951d44 (patch) | |
| tree | 01ee0846f579d9d139ee46a6a43f67ba522c7196 /Gameplay.h | |
| download | pocketempires-8ec41b4410aba535008daf991ea59a8740951d44.tar.gz | |
+ Initial commit. Added source, sprites and final executable.
Diffstat (limited to 'Gameplay.h')
| -rw-r--r-- | Gameplay.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Gameplay.h b/Gameplay.h new file mode 100644 index 0000000..513f420 --- /dev/null +++ b/Gameplay.h @@ -0,0 +1,32 @@ +#ifndef __GAMEPLAY_H__ +#define __GAMEPLAY_H__ + +/* ************************************** + * Includes * + * **************************************/ + +#include "Global_Inc.h" +#include "Gfx.h" +#include "Pad.h" +#include "Menu.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__ |
