21 lines
990 B
C
21 lines
990 B
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* ft_point.h :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/07/27 09:24:28 by cchauvet #+# #+# */
|
||
|
/* Updated: 2022/07/27 18:02:43 by cchauvet ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
#ifndef FT_POINT_H
|
||
|
# define FT_POINT_H
|
||
|
|
||
|
typedef struct s_point
|
||
|
{
|
||
|
int x;
|
||
|
int y;
|
||
|
} t_point;
|
||
|
#endif
|