по 3-му пункту не проходит, подскажите где ошибка
package com.javarush.games.minesweeper;
import com.javarush.engine.cell.*;
public class GameObject extends Game {
public int x;
public int y;
public GameObject(int x, int y) {
this.x = x;
this.y = y;
}
}