This repository has been archived on 2022-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
Othello/includes/plateau.h
2022-11-16 15:27:49 +01:00

15 lines
362 B
C

#ifndef OTHELLO_PLATEAU_H
#define OTHELLO_PLATEAU_H 1
#include "struct.h"
/* Remplie le plateau avec la configuration de départ */
void remplissage_debut(Jeu *jeu);
/* Récupère la case */
char recupere_case(Jeton *plateau[LONGEUR][LARGEUR], int case_i, int case_j);
/* Affiche le plateau */
void affiche_plateau(Jeton *plateau[LONGEUR][LARGEUR]);
#endif