rocketsplash-rt 0.2.2

Runtime library for loading and rendering Rocketsplash assets (.rst, .rsf)
Documentation
// <FILE>crates/rocketsplash-rt/src/lib.rs</FILE>
// <DESC>Lightweight runtime for displaying Rocketsplash text art</DESC>
// <VERS>VERSION: 1.1.0</VERS>
// <WCTX>Runtime library implementation</WCTX>
// <CLOG>Define runtime modules, exports, and public API surface</CLOG>

//! # rocketsplash-rt
//!
//! A lightweight runtime library for displaying pre-rendered Rocketsplash text art.

mod align;
mod color;
mod error;
mod fallback_mode;
mod font;
mod gradient_direction;
mod render;
mod scroll;
mod splash;
mod text_style;

pub use align::*;
pub use color::*;
pub use error::*;
pub use fallback_mode::*;
pub use font::*;
pub use gradient_direction::*;
pub use render::*;
pub use scroll::*;
pub use splash::*;
pub use text_style::*;

// Re-export format types used in the runtime API.
pub use rocketsplash_formats::{FontAtlas, FontMeta, RenderMode, Rgb, SplashMeta, StyleFlags};

// <FILE>crates/rocketsplash-rt/src/lib.rs</FILE>
// <VERS>END OF VERSION: 1.1.0</VERS>