From cb322ba4c92421e0a2833b96c540df7c462569d4 Mon Sep 17 00:00:00 2001 From: Romain Jegat <romain.jegat@insa-rennes.fr> Date: Mon, 29 Feb 2016 16:38:47 +0100 Subject: [PATCH] modification de structure Competence2 --- src/structures.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/structures.h b/src/structures.h index 9c363d0..d6474bb 100644 --- a/src/structures.h +++ b/src/structures.h @@ -58,7 +58,15 @@ typedef struct competence{ struct competence *parent; struct competence *enfant_gauche; struct competence *enfant_droit; + struct effet_competence effet; boolean connu; }competence; +typedef struct effet_competence{ + unsigned short int id; + type_nom nom; + /* effets à définir */ + +}effet_competence; + #endif -- GitLab