package com.codegym.games.minesweeper; import com.codegym.engine.cell.*; public class MinesweeperGame extends Game { private final static int SIDE = 9; public void initialize(){ setScreenSize(9,9); } public void setScreenSize(int height, int width) { return SIDE * SIDE; } public static void main(String[] args){ } }