11 lines
184 B
C
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
|
|
|