gemini_engine/ascii/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module holds the structs related to displaying text and ASCII art on a [`Canvas`](crate::core::Canvas)

mod animated_sprite;
pub use animated_sprite::AnimatedSprite;

mod sprite;
pub use sprite::Sprite;

mod text;
pub use text::Text;

mod alignment;
pub use alignment::{TextAlign, TextAlign2D};