aboutsummaryrefslogblamecommitdiff
path: root/morpion_rec/NiAh/ia.h
blob: 1174049b31904bf07d5a57483a21c4ecfb36bda3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                                             
/* IA pour morpion récursif - Alexis
 * ia.h
 * Définitions des fonctions nécéssaires à l'intelligence artificielle */

#ifndef IA_H
#define IA_H

#include "main.h"

Dots chooseFirstSubgrid();
Dots chooseFirstMove();
int pickUpMove(Dots grid[9][9], Boxes subgrid, Dots player, Boxes *move, Boxes firstSubgrid);

#endif