pokediamond/include/global.h
Michael Panzlaff 9ff579dac8 cleanup header includes and orders
Not complete, but a good start.
2021-06-24 15:57:31 +02:00

22 lines
444 B
C

#ifndef GUARD_GLOBAL_H
#define GUARD_GLOBAL_H
#include "config.h"
#include "MWC_string.h"
#include "function_target.h"
#include "nitro/types.h"
#include "constants/global.h"
#include "error_handling.h"
#define NELEMS(a) (sizeof(a) / sizeof(*(a)))
#define GF_ASSERT(expr) do {if (!(expr)) GF_AssertFail();} while (0)
#ifndef IN_MAIN_C
extern const u8 gGameLanguage;
extern const u8 gGameVersion;
#endif //IN_MAIN_C
#endif //GUARD_GLOBAL_H