-
Romain Jegat authoredRomain Jegat authored
competence.h 638 B
/*!
* \file AffichageConsole.h
* \brief Fichier contenant les signatures des fonctions liees a la structure competence.
*/
#ifndef DEPLACEMENTS_H_INCLUDED
#define DEPLACEMENTS_H_INCLUDED
/* Fonctions */
int init_Competence(Competence *noeud);
int taille(Competence *noeud);
unsigned int NbEnfants(Competence *noeud);
unsigned int hauteur(Competence *noeud);
Competence* construire_arbre_competence(Competence* a);
int rafraichir_competences(Competence * a);
boolean est_connue(Competence *c);
boolean est_complet(Competence *a);
Effet_Competence * get_effet(Competence *c);
int chemin_auto_competence(Competence* c);
#endif