Skip to content
Snippets Groups Projects
Commit 39593032 authored by llebasca's avatar llebasca
Browse files
parents d0da1cfd cceb06cc
No related branches found
No related tags found
4 merge requests!8Modele,!7Modele,!6Modele,!5Modele Version 1
...@@ -2,7 +2,37 @@ ...@@ -2,7 +2,37 @@
// Created by CABANTOUS corto on 18/02/2021. // 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*/
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