bracket-terminal 0.8.7

ASCII/Codepage 437 terminal emulator with a game loop. Defaults to OpenGL, also support WebGPU (for Vulkan/Metal/WGPU), Curses and Crossterm for output. Part of the bracket-lib family.
Documentation
1
2
3
4
5
6
7
8
9
mod input_handler;
pub use input_handler::*;
mod event_queue;
pub use event_queue::*;
use parking_lot::Mutex;

lazy_static! {
    pub static ref INPUT: Mutex<Input> = Mutex::new(Input::new());
}