diff --git a/GAME/include/prof.h b/GAME/include/prof.h index 409b9bcb9c5389e3c77b5f6df1c1e3993094bab7..0ddfbaca3a23d014b1682bd0747265627199de4c 100644 --- a/GAME/include/prof.h +++ b/GAME/include/prof.h @@ -2,7 +2,37 @@ // Created by CABANTOUS corto on 18/02/2021. // -#ifndef PROJET_PROF_H -#define PROJET_PROF_H -#endif //PROJET_PROF_H + +/*! + * \file prof.h + * \brief Character Header File + * \authors corto + * \version 1 + * \date 25/02/2021 + * + * Character structure definiton. + * + */ + +#ifndef GAME_INSA_PROJECT_PROF_H +#define GAME_INSA_PROJECT_PROF_H + +/*! + * \struct prof + * \brief Character structure + */ + +typedef struct { + int x_prof; /**< Position : abscissa */ + int y_prof; /**< Position : ordinate */ + int long_porf; /**< Size : length */ + int larg_prof; /**< Size : width */ + int speed_prof; /**< Charater speed */ + char * image_prof; /**< Source image of the character. */ +} prof; + +#endif /*GAME_INSA_PROJECT_Prof_H*/ + + +