15 lines
219 B
C
15 lines
219 B
C
|
#ifndef MENU_H
|
||
|
#define MENU_H
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <graph.h>
|
||
|
#include <time.h>
|
||
|
|
||
|
int MenuDebut(void);
|
||
|
void MenuFinGagne(void);
|
||
|
void MenuFinPerdu(void);
|
||
|
void InitEcran(void);
|
||
|
|
||
|
#endif // MENU_H
|