tmaze 1.15.0

Simple multiplatform maze solving game for terminal written entirely in Rust
Documentation
1
2
3
4
pub fn term_size() -> (u16, u16) {
    let (w, h) = crossterm::terminal::size().unwrap_or((100, 100));
    (w, h)
}