package com.javarush.games;
public class GameObject {
public int x;
public int y;
public GameObject (int x ,int y){
this.x=x;
this.y=y;
}
}
package com.javarush.games.minesweeper;
import com.javarush.engine.cell.*;
public class MinesweeperGame extends Game{
private static final int SIDE=9;
public void initialize() {
setScreenSize( SIDE, SIDE);
}
}