Skip to content
Snippets Groups Projects
Commit 6b194d18 authored by Romain Jegat's avatar Romain Jegat
Browse files

modification de structure Competence

parent 9a4ade2b
No related branches found
No related tags found
No related merge requests found
......@@ -51,13 +51,14 @@ typedef struct {
} personnage;
typedef struct {
int id;
typedef struct competence{
unsigned short int id;
type_nom nom;
competence parent;
competence enfant_gauche;
competence enfant droit;
unsigned short int etage;
struct competence *parent;
struct competence *enfant_gauche;
struct competence *enfant_droit;
boolean connu;
} competence;
}competence;
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment