/*!
* \file AffichageConsole.h
* \brief Fichier contenant les signatures des fonctions liees a la structure AffichageConsole.
*/

#ifndef AFFICHAGECONSOLE_H
#define AFFICHAGECONSOLE_H

#include "structures.h"

void afficheEnsembleJoueur(Partie *p);
void afficheNomJoueur(Joueur * j);
void afficheNomPersonnage(Personnage * p);
void afficheCoordonneesPersonnage(Case *c);
void afficheEtatPersonnage(Personnage *p);

#endif // AFFICHAGECONSOLE_H