minesweeper 1.2.1

Simple minesweeper in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[derive(PartialEq)]
pub enum ParamType {
    Width,
    Height,
    Mines
}

pub enum MoveDestination {
    Up,
    Down,
    Left,
    Right
}

pub enum GameEndState {
    Win,
    Lose
}