Revert vers une phase qui fonctionne théoriquement

This commit is contained in:
Lea
2025-11-28 08:39:24 -05:00
parent ac31baba3d
commit f60ebf6b42
2 changed files with 4 additions and 2 deletions

View File

@@ -111,7 +111,8 @@ void afficherImageTableau(std::string grid[][LARGTIC], std::string style) {
// Lignes de code pour faire afficher le Tic Tac Toe une fois que les symboles ont <20>t<EFBFBD> ajout<75>s
cout << "Joueur 1: " << emoteJ1 << " Joueur 2: " << emoteJ2 << endl << endl;
// Lignes de code pour faire afficher le Tic Tac Toe une fois que les symboles ont <20>t<EFBFBD> ajout<75>s
cout << " ";
for (int i = 0; i < LARGTIC; i++) {
cout << " " << i + 1 << " ";
@@ -140,7 +141,7 @@ void afficherImageTableau(std::string grid[][LARGTIC], std::string style) {
cout << "|" << " " ;
if (grid[k][i] == "X") {
cout << emoteJ1;
}
}
else if (grid[k][i] == "O") {
cout << emoteJ2;
}

View File

@@ -46,6 +46,7 @@ int main() {
case 'C':
changerLeTheme(theme);
theme = true;
break;
case 'Q':