diff options
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/global.h b/include/global.h index 2f31fa3d..2574c437 100644 --- a/include/global.h +++ b/include/global.h @@ -4,6 +4,9 @@ #include "config.h" #include "function_target.h" #include "nitro.h" +#include "constants/global.h" + +#define NELEMS(a) (sizeof(a) / sizeof(*(a))) enum GameVersion { VERSION_SAPPHIRE = 1, @@ -27,4 +30,9 @@ enum GameLanguage { extern void ErrorHandling(void); +#define GF_ASSERT(expr) do {if (!(expr)) ErrorHandling();} while (0) + +extern const enum GameLanguage gGameLanguage; +extern const enum GameVersion gGameVersion; + #endif //GUARD_GLOBAL_H |