1
0

Création des liaisons entre les fichiers et fonctions afin de permettre l'execution du jeu

This commit is contained in:
2022-11-29 15:40:12 +01:00
parent b73880b5b4
commit 95016b63a1
5 changed files with 60 additions and 27 deletions

View File

@@ -1,6 +1,6 @@
#ifndef FIN_H
#define FIN_H
void fin(unsigned long int timer);
int fin(unsigned long int timer);
#endif

View File

@@ -1,6 +1,6 @@
#ifndef GAME_H
#define GAME_H
void game(int colonnes, int lignes);
int game(int colonnes, int lignes);
#endif
#endif