chiropterm 0.2.0

bat-themed fake terminal in the style of libtcod
1
2
3
4
5
6
7
8
9
10
11
12
13
mod cell;
pub(crate) mod font;
mod renderer;
mod sprite;
#[allow(non_upper_case_globals)]
pub mod colors;
mod swatch;

pub(crate) use cell::{Bevels, CellContent, InteractorFmt};
pub use cell::{Interactor, SemanticContent};
pub use font::Font;
pub(crate) use renderer::Render;
pub(crate) use swatch::{DEFAULT_SWATCH, Swatch};