/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_point.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/08/08 09:23:43 by jhalford #+# #+# */ /* Updated: 2016/08/11 11:03:12 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_POINT_H # define FT_POINT_H typedef struct s_point { int x; int y; } t_point; #endif