Hello everyone. How do you think what can be done to meet the 4th requirement? Thank you.
package com.codegym.games.minesweeper;
import com.codegym.engine.cell.*;
public class MinesweeperGame extends Game {
private static final int SIDE = 9;
public void setScreenSize(int side1, int side2){
}
public void initialize(){
setScreenSize(SIDE, SIDE);
}
}