21 lines
994 B
C
21 lines
994 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* render.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: qmennen <qmennen@student.codam.nl> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/04/15 16:28:16 by qmennen #+# #+# */
|
|
/* Updated: 2025/04/15 16:30:51 by qmennen ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef RENDER_H
|
|
# define RENDER_H
|
|
|
|
# include "cub3d.h"
|
|
|
|
void render_clear(t_screen *screen);
|
|
|
|
#endif
|