Battleship-JavaScript icon indicating copy to clipboard operation
Battleship-JavaScript copied to clipboard

A very very simple Battleship game written in plain JavaScript

Results 1 Battleship-JavaScript issues
Sort by recently updated
recently updated
newest added

class Ship { private final String name; private final int length; private Cell position; private boolean horizontal; private int health; public Ship(String name, int length) { this.name = name; this.length...