diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-01-11 02:02:07 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-01-11 03:01:46 +0100 |
commit | 65364d2e2f40807fdd03ade25917f728adc0ef77 (patch) | |
tree | e2d2e5d0a7e329f50009a086959b4226fe27dde7 /character.h | |
parent | d590bfdcdfa8799439cffa41fc74346e9923b6e7 (diff) |
coding rules: stop at 78 colsrewrite
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'character.h')
-rw-r--r-- | character.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/character.h b/character.h index 3fba9c7..04b43f1 100644 --- a/character.h +++ b/character.h @@ -3,10 +3,9 @@ #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); +void damage_target_hp(SURFACES *, POSITIONS *, struct chr_t *, int damages); +void cure_target_hp(SURFACES *, POSITIONS *, struct chr_t *, int cure); +void damage_target_mp(SURFACES *, POSITIONS *, struct chr_t *, int damages); +void cure_target_mp(SURFACES *, POSITIONS *, struct chr_t *target, int cure); #endif /* CHARACTER_H */ |