class Cell {
  /** Has this cell been explored? */
  public boolean isExplored;
  /** Is this cell a bomb? */
  public boolean isBomb;
  /** Has this cell been marked as a potential bomb? */
  public boolean isMarked;
  /** The number of neighbors that are bombs. */
  public int neighbors;
}
