Advertisement
xFazz

batleship player

Dec 10th, 2019
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1.  
  2. public void startGame() {
  3. gameGrid = new BattleshipGrid();
  4. if (playerName == null) {
  5. System.out.println("Enter your name: ");
  6. playeName = sc.nextLine();
  7. }
  8. }
  9.  
  10. public Position shoot() {
  11. char row = ' ';
  12. int col = -1
  13. boolean notValid = false;
  14.  
  15. while ()
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement