@ -0,0 +1,15 @@
package Minesweeper;
enum CellType{Number, Bomb}
public class Cell {
public CellType type;
public boolean flagged = false;
public int value = -1;
public Cell(CellType _type) {
type = _type;
}