diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-01-08 19:45:03 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-01-08 19:45:03 +0100 |
commit | bfdf279cac51fe8945e59cd566cba2cb2efcffce (patch) | |
tree | c2310a297cb9d48814009142ea92cc31bd787fee /actions.c | |
parent | fc3baf853b4429cf012f6d77b43d74872dc5ca11 (diff) |
move some functions and headers so that the compilation is quicker
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'actions.c')
-rw-r--r-- | actions.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,9 +1,10 @@ -#include <SDL/SDL.h> +#include <stdlib.h> + #include "structures.h" + #include "constantes.h" -#include "prototypes.h" -#include <stdio.h> -#include <stdlib.h> + +#include "character.h" static int compute_damages(const struct character_t *src, const struct character_t *dest, enum damages_type_t type, enum element_t element) |