minesweeper 1.1.0

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

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