ft_point.h 103 B

1234567891011
  1. #ifndef FT_POINT_H
  2. # define FT_POINT_H
  3. typedef struct s_point
  4. {
  5. int x;
  6. int y;
  7. } t_point;
  8. #endif