Velha Jedi  1.1
Jogo da velha invencível
ia_util.hpp
Vá para a documentação deste arquivo.
1 
8 #ifndef IA_UTIL
9 #define IA_UTIL
10 
11 #include<gtk/gtk.h>
12 #include"../util.hpp"
13 
14 int analise_do_tabuleiro(GtkWidget **casas, int vez);
15 int e_vitoria(char *t, int tipo_peca, int i);
16 int fim_de_jogo(char vetor_t[TAM]);
17 bool velha(char tabuleiro[TAM]);
18 
19 #endif
int fim_de_jogo(char vetor_t[TAM])
Definition: ia_util.cpp:76
bool velha(char tabuleiro[TAM])
Definition: ia_util.cpp:16
int analise_do_tabuleiro(GtkWidget **casas, int vez)
Definition: ia_util.cpp:31
int e_vitoria(char *t, int tipo_peca, int i)
Definition: ia_util.cpp:59