Skip to content
Snippets Groups Projects
prof.h 670 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
llebasca's avatar
llebasca committed
 * \brief Teacher Header File
 * \authors  Corto
Corto.Cabantous's avatar
Corto.Cabantous committed
 * \version 1
 * \date 25/02/2021
 *
llebasca's avatar
llebasca committed
 * Teacher structure and functions definiton.
Corto.Cabantous's avatar
Corto.Cabantous committed
 *
 */

#ifndef GAME_INSA_PROJECT_PROF_H
#define GAME_INSA_PROJECT_PROF_H

/*!
llebasca's avatar
llebasca committed
 * \struct Prof
 * \brief Teacher structure
Corto.Cabantous's avatar
Corto.Cabantous committed
 */

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_porf; /**< Size : length */
    int larg_prof; /**< Size : width */
llebasca's avatar
llebasca committed
    int speed_prof; /**< Teacher speed */
    char * image_prof; /**< Source image of the teacher. */
} Prof;
Corto.Cabantous's avatar
Corto.Cabantous committed

#endif /*GAME_INSA_PROJECT_Prof_H*/