From bfdf279cac51fe8945e59cd566cba2cb2efcffce Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Thu, 8 Jan 2015 19:45:03 +0100 Subject: move some functions and headers so that the compilation is quicker Signed-off-by: Olivier Gayot --- character.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 character.h (limited to 'character.h') 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 */ -- cgit v1.2.3