Advertisement
Guest User

ft_point.h

a guest
Aug 21st, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.11 KB | None | 0 0
  1. #ifndef FT_POINT_H
  2. # define FT_POINT_H
  3.  
  4. typedef struct s_point
  5. {
  6.     int x;
  7.     int y;
  8. }       t_point
  9.  
  10. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement