20 lines
1 KiB
C
20 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* pathfinding.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/04/10 18:13:05 by mcolonna #+# #+# */
|
|
/* Updated: 2024/04/18 16:03:39 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PATHFINDING_H
|
|
# define PATHFINDING_H
|
|
|
|
# include "includes.h"
|
|
|
|
t_direction pathfinding(t_point start, t_point finish, bool for_firsk);
|
|
|
|
#endif
|