Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lemeilleurjeudumonde
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tacticalrpg
lemeilleurjeudumonde
Commits
1e882a36
Commit
1e882a36
authored
9 years ago
by
Romain Jegat
Browse files
Options
Downloads
Patches
Plain Diff
Déplacement des struct competence et ajout d'idées de fonctions
parent
8beb0729
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/competence.c
+18
-0
18 additions, 0 deletions
src/competence.c
src/competence.h
+22
-0
22 additions, 0 deletions
src/competence.h
with
40 additions
and
0 deletions
src/competence.c
+
18
−
0
View file @
1e882a36
#include
<stdio.h>
#include
<stdlib.h>
#include
"structures.h"
#include
"competence.h"
*
arbre_competence
init_arbre_competence
(
*
arbre_competence
){
}
*
arbre_competence
construire_arbre_competence
(
char
nom
){
/* Construit un arbre à partir d'un fichier XML */
}
int
chemin_auto_competence
This diff is collapsed.
Click to expand it.
src/competence.h
+
22
−
0
View file @
1e882a36
#ifndef DEPLACEMENTS_H_INCLUDED
#define DEPLACEMENTS_H_INCLUDED
typedef
struct
competence
{
/* Competence d'un arbre de talent */
unsigned
short
int
id
;
type_nom
nom
;
unsigned
short
int
etage
;
struct
competence
*
parent
;
struct
competence
*
enfant_gauche
;
struct
competence
*
enfant_droit
;
struct
effet_competence
effet
;
boolean
connu
;
}
competence
;
typedef
struct
effet_competence
{
/* Effet d'une compétence de l'arbre */
unsigned
short
int
id
;
type_nom
nom
;
/* effets à définir */
}
effet_competence
;
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment