/* ************************************************************************** */ /* */ /* :::::::: */ /* player.h :+: :+: */ /* +:+ */ /* By: qmennen +#+ */ /* +#+ */ /* Created: 2025/04/15 18:53:27 by qmennen #+# #+# */ /* Updated: 2025/06/04 16:39:57 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ #ifndef PLAYER_H # define PLAYER_H # include "cub3d.h" int player_create(t_game **game); void player_update(t_game *game, double delta_time); void visit_area(t_game *game); void rotate(t_player *player, double rot_speed, double delta); #endif