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/humain.h
2022-11-28 21:06:59 +01:00

14 lines
312 B
C

#ifndef OTHELLO_HUMAN_H
#define OTHELLO_HUMAN_H 1
#include "joueur.h"
typedef struct jeu Jeu;
/* Joue le tour d'un joueur humain */
void action_joueur_humain(Jeu *jeu, const int couleur);
/* Auxiliaire : Demande au joueur où placer son jeton */
void _action_joueur_humain(int *ligne, int *colonne);
#endif