23 lines
1.1 KiB
C
23 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* player.h :+: :+: */
|
|
/* +:+ */
|
|
/* By: whaffman <whaffman@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/04/15 18:53:27 by qmennen #+# #+# */
|
|
/* Updated: 2025/05/15 13:28:11 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PLAYER_H
|
|
# define PLAYER_H
|
|
|
|
# include "cub3d.h"
|
|
|
|
int player_create(t_game **game);
|
|
void player_render(t_screen *screen, t_player *player);
|
|
void player_update(t_game *game, double delta_time);
|
|
|
|
#endif
|