#ifndef OTHELLO_MINIMAX_H #define OTHELLO_MINIMAX_H 1 typedef struct jeu Jeu; /* Joue le tour d'après l'algorithme Minimax */ void action_joueur_minimax(Jeu *jeu, int couleur); #endif