diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-07-08 16:01:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-08 16:01:56 -0400 |
commit | 0816046a73902d513d45a6bc7ab5986384411b5b (patch) | |
tree | 0981cc30f2360f9c70b6b58f189525bef0a0381f /include/main.h | |
parent | f75c048434d5dc7538e628206c29a0730404db81 (diff) | |
parent | 4672e05560da3f49a9fdb6be1b1a5fa73e8adccd (diff) |
Merge pull request #346 from luckytyphlosion/master
Match (almost) all of 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 |