cub3d/inc/player.h

25 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* player.h :+: :+: */
/* +:+ */
/* By: qmennen <qmennen@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2025/04/15 18:53:27 by qmennen #+# #+# */
/* Updated: 2025/06/10 19:29:24 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);
void interact_door(t_game *game);
#endif