-
Notifications
You must be signed in to change notification settings - Fork 0
/
fdf.h
22 lines (19 loc) · 987 Bytes
/
fdf.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* fdf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sflinois <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/03/12 12:20:02 by sflinois #+# #+# */
/* Updated: 2017/03/12 12:21:52 by sflinois ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FDF_H
# define FDF_H
typedef struct s_pixel
{
int x;
int y;
} t_pixel;
#endif