fdf/inc/fdf.h
2017-02-13 20:40:04 +02:00

25 lines
395 B
C

// C/C++ File
// AUTHOR: fotonmootn
// FILE: inc/fdf.h
// ROLE: to rule them all
// CREATED: 2017-02-13 20:07:04
// MODIFIED: 2017-02-13 20:28:14
#ifndef FDF_H
# define FDF_H
#include "libft.h"
#include "mlx.h"
#include <stdio.h> // warning!!
typedef struct s_point
{
int x;
int y;
int z;
} t_point;
void line(t_point *p1, t_point *p2, void *mlx, void *win);
#endif