From 54fb5a61dc3cce8a2726e5e1cfcb9ff6d4d2ea34 Mon Sep 17 00:00:00 2001 From: Davon Green Date: Wed, 15 Oct 2025 17:10:17 -0400 Subject: [PATCH 1/2] test commit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ea47623..72f203a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # Console Game Hub +test-delete this Repository for explorations of software development From fe3dc6dcba8f2d45d76e531fb0d8857f4592b35b Mon Sep 17 00:00:00 2001 From: Davon Green Date: Mon, 27 Oct 2025 22:28:35 -0400 Subject: [PATCH 2/2] Added Now Playing message to highlight current game title --- GameLauncher.java | 1 + 1 file changed, 1 insertion(+) 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));