-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminiRT.h
More file actions
27 lines (22 loc) · 1.18 KB
/
miniRT.h
File metadata and controls
27 lines (22 loc) · 1.18 KB
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
26
27
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* miniRT.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: pdelanno <pdelanno@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/08/21 11:58:07 by pdelanno #+# #+# */
/* Updated: 2023/09/19 07:17:50 by pdelanno ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINIRT_H
# define MINIRT_H
# include "types.h"
# define WIDTH 800
# define HEIGHT 600
void ft_hook(void *param);
void ft_render(t_scene *scene);
int parsing_main(t_scene *scene, char *file_name);
int ft_parsing_error(char *str, char *object, int return_value);
void free_all(t_scene *scene);
#endif