24 lines
1,018 B
C
24 lines
1,018 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* points.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* 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
|