
Added features: - Check if the room is valid - Pathfinding - Firsk - Camera Changes: - Borders Dev: - new test rooms - ber.vim plugin
25 lines
1 KiB
C
25 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* camera.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/04/11 16:31:42 by mcolonna #+# #+# */
|
|
/* Updated: 2024/04/11 17:56:43 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef CAMERA_H
|
|
# define CAMERA_H
|
|
|
|
# include "includes.h"
|
|
|
|
typedef struct s_camera
|
|
{
|
|
t_point pos;
|
|
} t_camera;
|
|
|
|
void camera_sync(void);
|
|
|
|
#endif
|