Skip to content
Snippets Groups Projects
prof.h 665 B
Newer Older
Corto.Cabantous's avatar
Corto.Cabantous committed
//
// Created by CABANTOUS corto on 18/02/2021.
//


Corto.Cabantous's avatar
Corto.Cabantous committed

/*!
 * \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
 */

Corto.Cabantous's avatar
Corto.Cabantous committed
typedef struct {
Corto.Cabantous's avatar
Corto.Cabantous committed
    int x_prof; /**< Position : abscissa */
    int y_prof; /**< Position : ordinate */
    int long_prof; /**< Size : length */
Corto.Cabantous's avatar
Corto.Cabantous committed
    int larg_prof; /**< Size : width */
    int speed_prof; /**< Charater speed */
    char * image_prof; /**< Source image of the character. */
Corto.Cabantous's avatar
Corto.Cabantous committed

#endif /*GAME_INSA_PROJECT_Prof_H*/