diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2022-02-26 09:59:49 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-26 09:59:49 -0800 |
commit | 0dd38993f6a4383d6d5743fd0ae0abc01210ae25 (patch) | |
tree | 6edf91e26be4f3a298da9c6039faabc797b4a778 /src/code_8073CF0.c | |
parent | 3555fb7c945ef5152910a84390ecbd1a38ea585d (diff) | |
parent | 2d6f3afbd4bbfc1796a91f6a8f4d6ee140488ca8 (diff) |
Merge pull request #95 from SethBarberee/data_move
Move Menu Data to src/data/menus
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); +} + |