I absolutely don't understand why the last conditon isn't met.
Can anyone help me ?
Thanks.
package com.codegym.games.minesweeper;
public class GameObject
{
public int x;
public int y;
public boolean isMine;
public GameObject(int x, int y, boolean isMine)
{
this.x = x;
this.y = y;
this.isMine = isMine;
}
}