1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.

29 lines
1.2 KiB
C
Raw Normal View History

2023-08-03 23:16:27 +02:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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