tmaze 1.15.1

Simple multiplatform maze solving game for terminal written entirely in Rust
Documentation
use std::io;
pub use std::time::Duration;

use crate::{core::*, renderer::Frame};

pub mod draw;
pub mod helpers;
pub mod menu;
pub mod popup;
pub mod progressbar;

pub use draw::*;
pub use helpers::*;
pub use menu::*;
pub use popup::*;
pub use progressbar::*;

pub trait Screen {
    fn draw(&self, frame: &mut Frame) -> io::Result<()>;
}