blob: 521774a9658b934eb9c24017ece8d4d2ae0e2a99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* capture.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/11 13:15:11 by cacharle #+# #+# */
/* Updated: 2020/01/16 07:49:17 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include "cub3d.h"
int capture(t_state *state)
{
printf("capture\n");
/* render_update_window(state); */
/* write_bmp(&state->window); */
return (0);
}
void write_bmp(t_image *image)
{
}
|