17 lines
262 B
C
17 lines
262 B
C
#include <graph.h>
|
|
|
|
#include "menu.h"
|
|
#include "comportementJCJ.h"
|
|
#include "comportementJCIA.h"
|
|
|
|
void Jeu(){
|
|
int choix[2], taille = 0;
|
|
Menu(choix);
|
|
taille = choix[1];
|
|
if(choix[0] == 1){
|
|
compJCJ(taille);
|
|
}else if (choix[0] == 2){
|
|
compJCIA(taille);
|
|
}
|
|
}
|