Newer
Older
//
// Created by CABANTOUS corto on 18/02/2021.
//
*
*/
#ifndef GAME_INSA_PROJECT_PROF_H
#define GAME_INSA_PROJECT_PROF_H
/*!
int x_prof; /**< Position : abscissa */
int y_prof; /**< Position : ordinate */
int long_prof; /**< Size : length */
char * image_prof; /**< Source image of the character. */
int x_hr; /**< Position : x hight-right point */
int y_hr; /**< Position : y hight-right point */
int x_ll; /**< Position : x low-left point */
int y_ll; /**< Position : y low-left point */
int x_lr; /**< Position : x low-right point */
int y_lr; /**< Position : y low-right point */
void init_prof(Prof * prof, int x, int y, int length, int width, int speed, char * path);