mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 05:00:12 +00:00
10 lines
251 B
C
10 lines
251 B
C
#ifndef GUARD_DUNGEON_AI_ITEM_WEIGHT_H
|
|
#define GUARD_DUNGEON_AI_ITEM_WEIGHT_H
|
|
|
|
#include "structs/dungeon_entity.h"
|
|
|
|
u32 GetAIUseItemProbability(Entity *targetPokemon, Item *item, u32 itemTargetFlags);
|
|
bool8 IsAdjacentToEnemy(Entity *pokemon);
|
|
|
|
#endif
|