rocketsplash-rt 0.3.0

Runtime library for loading and rendering Rocketsplash assets (.rst, .rsf)
Documentation
// <FILE>crates/rocketsplash-rt/src/font/mod.rs</FILE>
// <DESC>Font loading and text rendering module</DESC>
// <VERS>VERSION: 2.0.0</VERS>
// <WCTX>Foundation crates 0.3.0 (RELEASE_PLAN F2 cycle-break)</WCTX>
// <CLOG>2.0.0: pure module root — RenderOptions extracted to render_options.rs; children now import siblings directly so no file depends back on this root. 1.2.0: shared glyph conversion helper.</CLOG>

mod cls_font;
mod cls_text_builder;
mod fnc_align_offset;
mod fnc_convert_glyph;
mod fnc_load_font;
mod fnc_render_text;
mod fnc_resolve_glyph;
mod fnc_stamp_glyph;
mod render_options;

pub use cls_font::*;
pub use cls_text_builder::*;
pub use fnc_load_font::*;

// <FILE>crates/rocketsplash-rt/src/font/mod.rs</FILE>
// <VERS>END OF VERSION: 2.0.0</VERS>