blob: ae5b95224c9628b44a2e858990179ec49c35e946 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef GUARD_DUNGEON_AI_TARGETING_H
#define GUARD_DUNGEON_AI_TARGETING_H
#include "dungeon_entity.h"
bool8 CanAttackInFront(struct DungeonEntity *pokemon, s32 direction);
#endif
|