diff options
| author | XaviDCR92 <xavi.dcr@gmail.com> | 2018-07-09 19:26:13 +0200 |
|---|---|---|
| committer | XaviDCR92 <xavi.dcr@gmail.com> | 2018-07-09 19:26:13 +0200 |
| commit | f0b654b9bf3bc2a93c1f89d4cc3edcf77b948555 (patch) | |
| tree | 91b7404dca0b6eb136cb7f9b144435419144b777 /Global_Inc.h | |
| parent | d85464781580796bbcc744ae732e56d1920e3b0f (diff) | |
| download | pocketempires-f0b654b9bf3bc2a93c1f89d4cc3edcf77b948555.tar.gz | |
Game has been restructured in favor of OOP
Diffstat (limited to 'Global_Inc.h')
| -rw-r--r-- | Global_Inc.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Global_Inc.h b/Global_Inc.h index 1b1cd88..358b545 100644 --- a/Global_Inc.h +++ b/Global_Inc.h @@ -1,9 +1,9 @@ -#ifndef __GLOBAL_INC_HEADER__ -#define __GLOBAL_INC_HEADER__ +#ifndef GLOBAL_INC_H__ +#define GLOBAL_INC_H__ /* ************************************* - * Includes + * Includes * *************************************/ #include <inttypes.h> @@ -17,10 +17,10 @@ #ifdef __cplusplus #include <Gamebuino.h> #include <Print.h> -#endif //__cplusplus +#endif /* cplusplus. */ /* ************************************* - * Defines + * Defines * *************************************/ #define DEBUG_VAR(var, suff, x, y) if (1) \ @@ -31,22 +31,22 @@ } /* ************************************* - * Structs and enums + * Structs and enums * *************************************/ /* ************************************* - * Global variables + * Global variables * *************************************/ #ifdef __cplusplus extern Gamebuino gb; -#endif //__cplusplus +#endif /* cplusplus. */ extern const uint8_t font3x5[]; extern const uint8_t font3x3[]; /* ************************************* - * Global prototypes + * Global prototypes * *************************************/ -#endif //__GLOBAL_INC_HEADER__ +#endif /* GLOBAL_INC_H__. */ |
