Skip to content
Snippets Groups Projects
Commit b5103330 authored by ColinDrieu's avatar ColinDrieu
Browse files

Ajout du fichier joueur.h

Le fichier definit la signature des fonctions pour la structure joueur.
parent e36257b7
No related branches found
No related tags found
No related merge requests found
/*!
* \file joueur.h
* \brief Fichier contenant les signatures des fonctions liees a la structure Joueur.
*/
#include "structures.h"
#ifndef JOUEUR_H
#define JOUEUR_H
Joueur * nouveauJoueur();
void initJoueur(Joueur * j, char * nom);
void deleteJoueur(Joueur * j);
int addPersonnage(Joueur * j, Personnage * p);
int removePersonnage(Joueur * j, Personnage * p);
int appartientJoueur(Joueur * j, Personnage * p);
#endif // JOUEUR_H
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