mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 09:58:09 +01:00
22 lines
1.1 KiB
C
22 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* render.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: kcolin <kcolin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/07/31 13:36:36 by kcolin #+# #+# */
|
|
/* Updated: 2025/07/31 13:36:43 by kcolin ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef RENDER_H
|
|
# define RENDER_H
|
|
|
|
# include "../cub3d_data.h"
|
|
|
|
void reset_matrix(t_cub3d_data *data);
|
|
void matrix_to_image(t_cub3d_data *data);
|
|
void matrix_set(t_cub3d_data *data, int x, int y, int color);
|
|
|
|
#endif // RENDER_H
|