mirror of
https://github.com/pret/pmd-red.git
synced 2026-06-16 21:50:21 -05:00
23 lines
385 B
C
23 lines
385 B
C
#include "global.h"
|
|
#include "structs/dungeon_entity.h"
|
|
|
|
extern void sub_8067110(Entity *);
|
|
extern void sub_80671A0(Entity *);
|
|
extern void sub_8073D14(Entity *);
|
|
|
|
void HandleEatAIAction(Entity *pokemon)
|
|
{
|
|
sub_8067110(pokemon);
|
|
}
|
|
|
|
void HandleThrowItemAIAction(Entity *pokemon)
|
|
{
|
|
sub_80671A0(pokemon);
|
|
}
|
|
|
|
void HandlePickUpAIAction(Entity *pokemon)
|
|
{
|
|
sub_8073D14(pokemon);
|
|
}
|
|
|