diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2020-06-14 16:08:21 -0400 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2020-06-14 16:08:21 -0400 |
commit | bc143a695d54f7ac663b2b3f1ea98c53b21842e2 (patch) | |
tree | 68540a243b212f5657fc4a9ddbede12e89611a3f /include/main.h | |
parent | e2eb17dcbd8f9021b7e9fc805c8c03fac6b3b255 (diff) |
Initial work on pokemon_summary_screen.c
Diffstat (limited to 'include/main.h')
-rw-r--r-- | include/main.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/main.h b/include/main.h index f89ffbd63..a27145c7b 100644 --- a/include/main.h +++ b/include/main.h @@ -1,12 +1,12 @@ #ifndef GUARD_MAIN_H #define GUARD_MAIN_H -#include "global.h" - typedef void (*MainCallback)(void); typedef void (*IntrCallback)(void); typedef void (*IntrFunc)(void); +#include "global.h" + extern IntrFunc gIntrTable[]; struct Main |