42_cub3d/include/render.h
mcolonna 26621c72c6 docs, clean, several things... *
- add docs
- remove unused things
- redo modifications i accidentally erased from spacetime
2024-11-07 01:03:05 +01:00

29 lines
1.2 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* render.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mcolonna <mcolonna@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/31 17:13:20 by mc #+# #+# */
/* Updated: 2024/11/04 13:47:47 by mcolonna ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef RENDER_H
# define RENDER_H
# include "include.h"
# include "utils.h"
# include "temp.h"
# include "const.h"
# include "global.h"
/// @brief Draw the camera image using raycasting.
///
/// @param img_data Data addr of the image to draw on.
/// @return Unused.
int render(u_int32_t *img_data);
#endif