diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2022-02-20 09:08:42 -0800 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2022-02-20 09:08:42 -0800 |
commit | 0829319ee532fb1c6ab0a9f8b5f6ecd5bc26d43d (patch) | |
tree | 2906700d74617aad50472e8978eb59d7a8363c87 /src/code_8073CF0.c | |
parent | 6c5749a148856780933326f8e83779cf8e8dbd69 (diff) |
these funcs have nothing to do with those so separate them
Diffstat (limited to 'src/code_8073CF0.c')
-rw-r--r-- | src/code_8073CF0.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/code_8073CF0.c b/src/code_8073CF0.c new file mode 100644 index 0000000..f9bf10f --- /dev/null +++ b/src/code_8073CF0.c @@ -0,0 +1,22 @@ +#include "global.h" +#include "dungeon_entity.h" + +extern void sub_8067110(struct DungeonEntity *); +extern void sub_80671A0(struct DungeonEntity *); +extern void sub_8073D14(struct DungeonEntity *); + +void sub_8073CF0(struct DungeonEntity *pokemon) +{ + sub_8067110(pokemon); +} + +void sub_8073CFC(struct DungeonEntity *pokemon) +{ + sub_80671A0(pokemon); +} + +void sub_8073D08(struct DungeonEntity *pokemon) +{ + sub_8073D14(pokemon); +} + |