From 939894b06a0b12a087c2642c7096a744d561b769 Mon Sep 17 00:00:00 2001 From: llebasca <llebasca@insa-rennes.fr> Date: Tue, 2 Mar 2021 13:58:10 +0100 Subject: [PATCH] Update documentation prof.h --- GAME/include/personnage.h | 2 +- GAME/include/prof.h | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/GAME/include/personnage.h b/GAME/include/personnage.h index 62428cb..6715b87 100644 --- a/GAME/include/personnage.h +++ b/GAME/include/personnage.h @@ -17,7 +17,7 @@ #define GAME_INSA_PROJECT_PERSONNAGE_H /*! - * \struct personnage + * \struct Personnage * \brief Character structure */ diff --git a/GAME/include/prof.h b/GAME/include/prof.h index 0ddfbac..cb28421 100644 --- a/GAME/include/prof.h +++ b/GAME/include/prof.h @@ -6,12 +6,12 @@ /*! * \file prof.h - * \brief Character Header File - * \authors corto + * \brief Teacher Header File + * \authors Corto * \version 1 * \date 25/02/2021 * - * Character structure definiton. + * Teacher structure and functions definiton. * */ @@ -19,8 +19,8 @@ #define GAME_INSA_PROJECT_PROF_H /*! - * \struct prof - * \brief Character structure + * \struct Prof + * \brief Teacher structure */ typedef struct { @@ -28,9 +28,9 @@ typedef struct { 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; + int speed_prof; /**< Teacher speed */ + char * image_prof; /**< Source image of the teacher. */ +} Prof; #endif /*GAME_INSA_PROJECT_Prof_H*/ -- GitLab