30 lines
1.2 KiB
C
30 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* best_index_to_move.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/02/08 14:18:43 by maiboyer #+# #+# */
|
|
/* Updated: 2024/02/08 14:20:01 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef BEST_INDEX_TO_MOVE_H
|
|
# define BEST_INDEX_TO_MOVE_H
|
|
|
|
# include "app/best_move.h"
|
|
# include "app/state.h"
|
|
# include "me/types.h"
|
|
# include "me/vec/vec_i64.h"
|
|
|
|
struct s_best_index_to_move
|
|
{
|
|
t_state *state;
|
|
t_vec_i64 *from;
|
|
t_vec_i64 *to;
|
|
t_iter_pos_func f;
|
|
t_usize i;
|
|
};
|
|
|
|
#endif /* BEST_INDEX_TO_MOVE_H */
|