22 lines
1.0 KiB
C
22 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* player.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: qmennen <qmennen@student.codam.nl> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/04/15 18:53:27 by qmennen #+# #+# */
|
|
/* Updated: 2025/04/15 19:08:01 by qmennen ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PLAYER_H
|
|
# define PLAYER_H
|
|
|
|
# include "cub3d.h"
|
|
|
|
int player_create(t_game **game);
|
|
void player_render(t_screen *screen, t_player *player);
|
|
|
|
#endif
|