-
Notifications
You must be signed in to change notification settings - Fork 0
/
object.h
20 lines (17 loc) · 1.03 KB
/
object.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* :::::::: */
/* object.h :+: :+: */
/* +:+ */
/* By: jandre-d <[email protected]> +#+ */
/* +#+ */
/* Created: 2019/03/02 10:46:04 by jandre-d #+# #+# */
/* Updated: 2019/03/19 16:38:33 by jandre-d ######## odam.nl */
/* */
/* ************************************************************************** */
#ifndef OBJECT_H
# define OBJECT_H
# include "fdf.h"
t_object_elem *object_elem_from_input(t_input *input);
void object_free(t_object_elem *obj);
#endif