Tanguy MAZE f9e508d5ef init
2019-06-22 18:23:35 +02:00

11 lines
184 B
C

#ifndef T_POINT_FLOOD_FILL
# define T_POINT_FLOOD_FILL
typedef struct s_point {
int x; // x : Width | x-axis
int y; // y : Height | y-axis
} t_point;
#endif