-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtabuleiro.h
29 lines (25 loc) · 967 Bytes
/
tabuleiro.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*******************************************************************************
* tabuleiro.h *
* Propósito: Apenas uma interface para as funções básicas do tabuleiro. *
* *
* @author Jéssica Taís C. Rodrigues *
******************************************************************************/
#ifndef _TABULEIRO_H_
#define _TABULEIRO_H_
typedef struct jogo {
char tabuleiro[8][8];
int ptsB;
int ptsP;
int limiteCima;
int limiteDir;
int limiteBaixo;
int limiteEsq;
} jogo;
void inicializaTab(jogo *jg);
// void inicializaTabPeso(int tabuleiroPeso[8][8]);
void imprimeTab(jogo *jg);
void copiaTab (jogo *fonte, jogo *destino);
void atualizaTab (jogo *jg, int x, int y, char jogador);
int min (int a, int b);
int max (int a, int b);
#endif