mirror of
https://github.com/Ladebeze66/Piscine42.git
synced 2025-12-16 05:58:07 +01:00
21 lines
987 B
C
Executable File
21 lines
987 B
C
Executable File
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_point.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/12/18 12:51:34 by fgras-ca #+# #+# */
|
|
/* Updated: 2022/12/18 12:53:57 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FT_POINT_H
|
|
# define FT_POINT_H
|
|
|
|
typedef struct point{
|
|
int x;
|
|
int y;
|
|
}t_point;
|
|
#endif
|