mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-22 15:08:24 -05:00
11 lines
237 B
C
11 lines
237 B
C
#ifndef GUARD_STATUS_CHECKS_1_H
|
|
#define GUARD_STATUS_CHECKS_1_H
|
|
|
|
#include "dungeon_entity.h"
|
|
|
|
bool8 HasNegativeStatus(struct Entity *pokemon);
|
|
bool8 IsSleeping(struct Entity *pokemon);
|
|
bool8 HasLowHealth(struct Entity *pokemon);
|
|
|
|
#endif
|