PocketEmpires/main.cpp

42 lines
1.0 KiB
C++
Raw Normal View History

/* **************************************
* 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;
}