29 lines
1.2 KiB
C
29 lines
1.2 KiB
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* algo.h :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: axdubois <axdubois@student.42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2023/08/01 22:11:53 by adjoly #+# #+# */
|
||
|
/* Updated: 2023/08/02 19:31:12 by axdubois ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#ifndef ALGO_H
|
||
|
# define ALGO_H
|
||
|
|
||
|
#include "../../includes/utils-h/utils.h"
|
||
|
#include "../../includes/utils-h/charobj.h"
|
||
|
#include "../../includes/algo-h/algo.h"
|
||
|
|
||
|
typedef struct s_square
|
||
|
{
|
||
|
int x;
|
||
|
int y;
|
||
|
int side;
|
||
|
} t_square;
|
||
|
|
||
|
t_square ft_comb(t_coords *listobjsx, t_coords *listobjsy);
|
||
|
|
||
|
#endif
|