remove useless include

This commit is contained in:
Mylloon 2022-11-18 16:53:54 +01:00
parent e72ec34803
commit 11a77f5331
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
4 changed files with 0 additions and 5 deletions

View file

@ -1,7 +1,6 @@
#ifndef OTHELLO_HUMAN_H
#define OTHELLO_HUMAN_H 1
#include "jeu.h"
#include "joueur.h"
typedef struct jeu Jeu;

View file

@ -1,8 +1,6 @@
#ifndef OTHELLO_JOUEUR_H
#define OTHELLO_JOUEUR_H 1
#include "jeu.h"
#include "liste.h"
#include "plateau.h"
typedef struct jeu Jeu;

View file

@ -1,5 +1,4 @@
#include "../includes/humain.h"
#include "../includes/joueur.h"
Jeton *ajoute_jeton(int pos_i, int pos_j, int couleur) {
Jeton *jeton = malloc(sizeof(Jeton));

View file

@ -1,4 +1,3 @@
#include "../includes/plateau.h"
#include "../includes/joueur.h"
void remplissage_debut(Jeu *jeu) {