mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-29 13:34:52 -05:00
23 lines
434 B
C
23 lines
434 B
C
#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);
|
|
}
|
|
|