diff --git a/GameLauncher.java b/GameLauncher.java index dd7e109..487e907 100644 --- a/GameLauncher.java +++ b/GameLauncher.java @@ -130,6 +130,7 @@ protected void run() { System.out.println("Goodbye!"); } else if (choice > 0 && choice <= this.games.size()) { Game game = this.games.get(choice - 1); + System.out.println("\n=== Now Playing: " + game.getName().toUpperCase() + " ==="); Optional score = game.play(); this.historyTracker.recordPlay(game.getName(), score.orElse(null)); diff --git a/README.md b/README.md index bc9ac9d..173361d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # Console Game Hub +test-delete this Repository for explorations of software development