isRunning ergänzt

pull/5/head
Nico Piehl 2022-12-03 21:22:16 +01:00
parent 5621b7e798
commit 864effdfc2
3 changed files with 7 additions and 4 deletions

View File

@ -40,9 +40,9 @@ public class Spiel {
spielbrettArray[1][1] = ' '; spielbrettArray[1][1] = ' ';
spielbrettArray[1][2] = ' '; spielbrettArray[1][2] = ' ';
spielbrettArray[1][3] = ' '; spielbrettArray[1][3] = ' ';
spielbrettArray[1][4] = 'O'; spielbrettArray[1][4] = '\u25A1';
spielbrettArray[1][5] = '\u25A1'; spielbrettArray[1][5] = '\u25A1';
spielbrettArray[1][6] = 'O'; spielbrettArray[1][6] = '\u25A1';
spielbrettArray[1][7] = ' '; spielbrettArray[1][7] = ' ';
spielbrettArray[1][8] = ' '; spielbrettArray[1][8] = ' ';
spielbrettArray[1][9] = ' '; spielbrettArray[1][9] = ' ';

View File

@ -156,7 +156,10 @@ public class Spielsystem {
} }
public boolean isRunning() { public boolean isRunning() {
return true; if(isWon() == false) {
return true;
}
return false;
} }
public boolean whoWon() { public boolean whoWon() {

View File

@ -250,7 +250,7 @@ public class UI {
//nach jedem Zug das Spielbrett ausgeben //nach jedem Zug das Spielbrett ausgeben
spielsystem.printBoard(); spielsystem.printBoard();
} while (spielsystem.isWon() == false); } while (spielsystem.isRunning() == true);
} }