package battleship.model; import battleship.utils.Pair; public class Ship { public Pair coords; public int size; public Ship(Pair coords, int size) { this.coords = coords; this.size = size; } }