blob: 49b700f2dc7b30a6049722ff89145d201968fb6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef GUARD_DUNGEON_AI_TARGETING_1_H
#define GUARD_DUNGEON_AI_TARGETING_1_H
#include "dungeon_entity.h"
// 0x71494
bool8 ShouldAvoidEnemies(struct DungeonEntity *pokemon);
// 0x71518
bool8 ShouldAvoidEnemiesAndShowEffect(struct DungeonEntity *pokemon, bool8 showRunAwayEffect);
#endif
|