Skip to content

Commit

Permalink
it's done, 2.62, 2.65, and 2.73 respectively
Browse files Browse the repository at this point in the history
  • Loading branch information
RealRTTV committed Oct 8, 2022
1 parent 22bb30f commit ffa3bf3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ use crate::KeyAction::{Down, Empty, Enter, Flag, Left, Right, Up};
// beginner: 9x9 w/ 10 @ 12.3%
// intermediate: 16x16 w/ 40 @ 15.6%
// expert: 30x16 w/ 99 @ 20.6%
const WIDTH: usize = 30;
const HEIGHT: usize = 16;
const MINE_COUNT: usize = 99;
const WIDTH: usize = 9;
const HEIGHT: usize = 9;
const MINE_COUNT: usize = 10;

const EMPTY_TYPE: u8 = 0b0000;
const WARNING_TYPE: u8 = 0b01;
Expand Down

0 comments on commit ffa3bf3

Please sign in to comment.