/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_point.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tosuman +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/03/31 00:10:28 by tosuman #+# #+# */ /* Updated: 2023/03/31 00:10:29 by tosuman ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_POINT_H # define FT_POINT_H typedef struct s_point { int x; int y; } t_point; #endif