Skip to content
Snippets Groups Projects
Commit e1ede455 authored by Corto.Cabantous's avatar Corto.Cabantous
Browse files

ajout de prof.h

parent 9c865d84
No related branches found
No related tags found
4 merge requests!8Modele,!7Modele,!6Modele,!5Modele Version 1
......@@ -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 prof {
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. */
};
#endif /*GAME_INSA_PROJECT_Prof_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