Changement alphabet + ajout TODO

This commit is contained in:
2025-12-05 12:52:04 -05:00
parent 150e533402
commit 1068695609
111 changed files with 136 additions and 884 deletions

View File

@@ -24,14 +24,13 @@ int main() {
bool quitter = false; //Quitter le jeu
int nbMot3lettre = 15; //Nombre de mot pr<70>sent dans le fichier
int temp = 0; //TODO: Variable temporaire
int nbLettre = 3;
string motRandom; // Mot random
const int NOMBREMOT3LETTRE = 51;
const int NOMBREMOT3LETTRE = 56;
int nbEssai = 6;
while (quitter == false) {
curseur(false);
backgroundDefault();
afficherMenu("AfficheMenu/Taxon.txt");
int choixMenu = _getch();
@@ -42,7 +41,6 @@ int main() {
delai();
curseur(true);
system("cls");
//background(temp);
effectuerTour(nbLettre);
@@ -53,14 +51,12 @@ int main() {
delai();
curseur(true);
system("cls");
temp = demanderBackground();
background(temp);
choixNbEssai();
break;
case '3':
afficherMenu("AfficheMenu/TaxonOption3.txt");
delai();
background('1');
afficherMenu("AfficheMenu/Quitter.txt");
quitter = true;
break;