/* ************************************************************************** */ /* */ /* :::::::: */ /* player.h :+: :+: */ /* +:+ */ /* By: qmennen +#+ */ /* +#+ */ /* Created: 2025/04/15 18:53:27 by qmennen #+# #+# */ /* Updated: 2025/05/14 12:43:14 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