/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_point.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/07 17:12:47 by cacharle #+# #+# */ /* Updated: 2019/07/07 17:15:20 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_POINT_H #define FT_POINT_H typedef struct { int x; int y; } t_point; #endif