From 57867bbbdc24b734d85f8d3569c7ad27dcd9504d Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 30 Jan 2020 15:52:16 +0100 Subject: files restructuration --- src/capture.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/capture.c (limited to 'src/capture.c') diff --git a/src/capture.c b/src/capture.c new file mode 100644 index 0000000..521774a --- /dev/null +++ b/src/capture.c @@ -0,0 +1,25 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* capture.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* 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) +{ +} -- cgit