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