added language.outputGameOverText() at line 53 Game.java

changed Method switchPlayer() and checkForTie() to private at line 71 and line 138 Game.java
This commit is contained in:
Andrin Fassbind 2021-10-09 15:50:38 +02:00
parent acb204f551
commit 5c86d218cb
1 changed files with 3 additions and 2 deletions

View File

@ -50,6 +50,7 @@ public class Game {
if(checkForWin()) {
language.outputWinnerText(playerPlaying);
language.outputGameOverText();
gameFinished = true;
} else if (checkForTie()) {
language.outputTieText();
@ -67,7 +68,7 @@ public class Game {
* Methode placeField aufgerufen.
* Der Spieler wird automatisch gewechselt.
*/
public void switchPlayer() {
private void switchPlayer() {
if (playerPlaying == 1) {
playerPlaying = player2;
} else {
@ -134,7 +135,7 @@ public class Game {
(gamefield.getField(field1) >= 1));
}
public boolean checkForTie() {
private boolean checkForTie() {
return gamefield.countSetFields() == 9;
}