23 lines
1.1 KiB
C
23 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* player.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <mcolonna@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/10/15 17:31:35 by mcolonna #+# #+# */
|
|
/* Updated: 2024/10/15 17:43:52 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PLAYER_H
|
|
# define PLAYER_H
|
|
|
|
# include "utils.h"
|
|
|
|
void init_player_n(void **data, t_point_int pos);
|
|
void init_player_s(void **data, t_point_int pos);
|
|
void init_player_w(void **data, t_point_int pos);
|
|
void init_player_e(void **data, t_point_int pos);
|
|
|
|
#endif
|