diff options
author | Cameron Hall <cameronghall@cox.net> | 2019-08-01 20:02:32 -0500 |
---|---|---|
committer | Cameron Hall <cameronghall@cox.net> | 2019-08-01 20:02:32 -0500 |
commit | 3878495887f2693c810228694b417f4e4d954476 (patch) | |
tree | 3520f05e949c598b7466c24c4e7b1339bef65120 /include/global.h | |
parent | c427a4af00fa46f33f7167977ea834218c37cfa8 (diff) |
move all externs to header files
Diffstat (limited to 'include/global.h')
-rwxr-xr-x | include/global.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/global.h b/include/global.h index 16b8e51..2a9b072 100755 --- a/include/global.h +++ b/include/global.h @@ -4,6 +4,13 @@ #include <string.h> #include "gba/gba.h" +#define NUM_SPRITE_GROUPS 100 +#define MAX_SPRITES_IN_GROUP 22 + +#include "types.h" +#include "functions.h" +#include "variables.h" + // Prevent cross-jump optimization. #define BLOCK_CROSS_JUMP asm(""); |