forked from pedroconceicao/Othello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathothello.h
37 lines (35 loc) · 807 Bytes
/
othello.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
30
31
32
33
34
35
36
37
/**
*
@file myf.h
*
@brief Breve Descrição
*
* Descrição mais detalhada do ficheiro que até poderiam incluir links para imagens
etc.
*
*
@author Pedro,
pedro.s.conceicao@ua.pt
*
*
@internal
*
Created 31-Out-2017
*
Company University of Aveiro
*
Copyright Copyright (c) 2017, Pedro
*
*
=====================================================================================
*/
#define VAZIO ' '
#define JOGADOR1 'O'
#define JOGADOR2 'X'
typedef char celula;
typedef struct {
celula T[8][8]; // Array bidimensional [8][8] com o estado das células
int vez; // inteiro que designa quem é a vez do próximo a jogar (1-jogador1, 2-jogador2)
int terminado; // inteiro que indica se o jogo está terminado (1 se sim , 0 se não )
} othello;
#include "prototypes.h"