skiadas / battleship

0 stars 13 forks source link

Implementation Comments for startGame #32

Open EmilyYoung1 opened 6 days ago

EmilyYoung1 commented 6 days ago

   private void startGame() {
        presenter.displayMessage("Game is starting...");
        // User input for grid size
        Grid grid = new Grid(5, 5); // Temporary grid
        presenter.displayGrid(grid);
        // Place ships (user and AI)
        // User Shoots then AI shoots
    }
EmilyYoung1 commented 6 days ago

private void allSunk() { if the ships in the ship list are all gone, win else keep shooting :)
}