diff options
Diffstat (limited to 'players.h')
-rw-r--r-- | players.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,7 +7,7 @@ #include "constantes.h" #include "structures.h" -struct character_t { +struct chr_t { struct team_t *team; int idx; @@ -49,7 +49,7 @@ struct character_t { int spirit; /* one for each element */ - enum affinity_t affinities[ELEMENT_COUNT]; + enum affinity_t affinities[ELEM_COUNT]; }; struct team_t { @@ -59,7 +59,7 @@ struct team_t { char *name; - struct character_t *chrs; + struct chr_t *chrs; struct objects_t objects; }; |