diff options
Diffstat (limited to 'character.h')
-rw-r--r-- | character.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/character.h b/character.h new file mode 100644 index 0000000..3fba9c7 --- /dev/null +++ b/character.h @@ -0,0 +1,12 @@ +#ifndef CHARACTER_H +#define CHARACTER_H + +#include "players.h" + +void damage_target_hp(SURFACES *surfaces, POSITIONS *, struct character_t *target, int damages); +void cure_target_hp(SURFACES *surfaces, POSITIONS *, struct character_t *target, int cure); + +void damage_target_mp(SURFACES *surfaces, POSITIONS *, struct character_t *target, int damages); +void cure_target_mp(SURFACES *surfaces, POSITIONS *, struct character_t *target, int cure); + +#endif /* CHARACTER_H */ |