/* ************************************************************************** */ /* */ /* :::::::: */ /* player.h :+: :+: */ /* +:+ */ /* By: whaffman +#+ */ /* +#+ */ /* 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