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