/* ************************************** * Includes * * **************************************/ #include "Menu.h" #include "System.h" /* ************************************** * Defines * * **************************************/ /* ************************************** * Global variables * * **************************************/ /* ************************************** * Functions definition * * **************************************/ /*****************************************************************//** * * \brief Initializes the device and game parameters. * * \return Error code (always 0), but is never returned. * *********************************************************************/ int main() { /* Initialize system and game parameters. */ SystemInit(); /* Main loop. */ for (;;) { /* Execute gameplay. */ MainMenu(); } /* This must never be reached. */ return 0; }