Files
SAE11_2024/include/jeu_humain.h

17 lines
369 B
C
Raw Normal View History

2024-11-21 13:03:43 +01:00
#ifndef JEU_HUMAIN_H
#define JEU_HUMAIN_H
#include "jeu.h"
/* Fonction qui gère le mode humain */
void jouerModeHumain(struct EtatJeu *etatJeu);
/* Fonction qui gère le placement initial */
void gererPlacementInitial(struct EtatJeu *etatJeu);
/* Fonction qui gère le tour du joueur */
void gererTourJoueur(struct EtatJeu *etatJeu);
2024-11-23 14:22:44 +01:00
void attendre(int n);
2024-11-21 13:03:43 +01:00
#endif