diff options
| author | XaviDCR92 <xavi.dcr@gmail.com> | 2018-07-09 22:33:29 +0200 |
|---|---|---|
| committer | XaviDCR92 <xavi.dcr@gmail.com> | 2018-07-09 22:33:29 +0200 |
| commit | 8ed9a3a57ad08bac4e8441b0b87ddc946296a3fd (patch) | |
| tree | 185528a843f4e38d0cc73d8893f3fed7d5639ada /main.cpp | |
| parent | cd78b97bceaf6ecbbab6f89631c15ed712878d4d (diff) | |
Fixed "includes/defines/local variables" headers.
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 43 |
1 files changed, 28 insertions, 15 deletions
@@ -1,30 +1,43 @@ -/* ************************************** - * Includes * - * **************************************/ +/* ******************************************************************* + * Includes + * ******************************************************************/ #include "Menu.h" #include "System.h" -/* ************************************** - * Defines * - * **************************************/ +/* ******************************************************************* + * Defines + * ******************************************************************/ -/* ************************************** - * Global variables * - * **************************************/ +/* ******************************************************************* + * Types definition + * ******************************************************************/ -/* ************************************** - * Functions definition * - * **************************************/ +/* ******************************************************************* + * Global variables definition + * ******************************************************************/ + +/* ******************************************************************* + * Local variables definition + * ******************************************************************/ + +/* ******************************************************************* + * Local prototypes declaration + * ******************************************************************/ + +/* ******************************************************************* + * Functions definition + * ******************************************************************/ /*****************************************************************//** * - * \brief Initializes the device and game parameters. + * \brief Initializes the device and game parameters and + * executes the game. * - * \return Error code (always 0), but is never returned. + * \return Error code (always 0), but must never be returned. * *********************************************************************/ -int main() +int main(void) { /* Initialize system and game parameters. */ SystemInit(); |
