// // Created by CABANTOUS corto on 18/02/2021. // /*! * \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_prof; /**< 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*/