public Ship(int posX, int posY, int size, bool horizontal, Map map) { this.posX = posX; this.posY = posY; this.size = size; this.isHorizontal = horizontal; this.map = map; }