diff options
Diffstat (limited to 'map.c')
-rw-r--r-- | map.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -6,6 +6,9 @@ #include "structures.h" #include "prototypes.h" +int battle(SURFACES *surfaces, POSITIONS *positions, + struct team_t *t1, struct team_t *t2); + void Fmap (SURFACES*surfaces, POSITIONS* positions, struct team_t *t1, struct team_t *t2) { @@ -41,7 +44,7 @@ void Fmap (SURFACES*surfaces, POSITIONS* positions, //une fois le jeu quitté ! Fdechargersurfaces_map(surfaces); #else - Fjouer(surfaces, positions, t1, t2); + battle(surfaces, positions, t1, t2); #endif } |