/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* points.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maiboyer +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/12/13 17:47:17 by maiboyer #+# #+# */ /* Updated: 2023/12/13 18:14:20 by maiboyer ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef POINTS_H # define POINTS_H # include "me/types.h" typedef struct s_point { t_i32 x; t_i32 y; } t_point; #endif