diff options
Diffstat (limited to 'include/status.h')
-rw-r--r-- | include/status.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/status.h b/include/status.h new file mode 100644 index 0000000..d12170a --- /dev/null +++ b/include/status.h @@ -0,0 +1,12 @@ +#ifndef GUARD_STATUS_H +#define GUARD_STATUS_H + +#include "dungeon_entity.h" + +#define FLASH_FIRE_STATUS_NONE 0 +#define FLASH_FIRE_STATUS_MAXED 1 +#define FLASH_FIRE_STATUS_NOT_MAXED 2 + +u8 GetFlashFireStatus(struct DungeonEntity *pokemon); + +#endif |