Revert vers une phase qui fonctionne théoriquement
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -46,6 +46,7 @@ int main() {
|
||||
|
||||
case 'C':
|
||||
changerLeTheme(theme);
|
||||
theme = true;
|
||||
break;
|
||||
|
||||
case 'Q':
|
||||
|
||||
Reference in New Issue
Block a user