blob: 1d10a0f046abf2d994a59df6f2502048fa14521b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef GUARD_DUNGEON_CAPABILITIES_1_H
#define GUARD_DUNGEON_CAPABILITIES_1_H
#include "dungeon_entity.h"
// 0x70C60
bool8 CannotUseItems(struct DungeonEntity *pokemon);
// 0x70CD0
bool8 CannotAct(struct DungeonEntity *pokemon);
#endif
|