summaryrefslogtreecommitdiff
path: root/actions.c
diff options
context:
space:
mode:
authorOlivier Gayot <duskcoder@gmail.com>2015-01-08 19:45:03 +0100
committerOlivier Gayot <duskcoder@gmail.com>2015-01-08 19:45:03 +0100
commitbfdf279cac51fe8945e59cd566cba2cb2efcffce (patch)
treec2310a297cb9d48814009142ea92cc31bd787fee /actions.c
parentfc3baf853b4429cf012f6d77b43d74872dc5ca11 (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.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/actions.c b/actions.c
index bd1ce2e..5559bd1 100644
--- a/actions.c
+++ b/actions.c
@@ -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)