blob: d59a0ee98535dc5db09fbb683d2de800244984e9 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef GUARD_DUNGEON_AI_TARGETING_1_H
#define GUARD_DUNGEON_AI_TARGETING_1_H
#include "dungeon_entity.h"
bool8 ShouldAvoidEnemies(struct DungeonEntity *pokemon);
bool8 ShouldAvoidEnemiesAndShowEffect(struct DungeonEntity *pokemon, bool8 showRunAwayEffect);
#endif
|