1#![doc = include_str!("../README.md")] 2 3/// UI draw helpers. 4pub mod ui; 5 6/// Transform operations. 7pub mod transform; 8 9/// State handling. 10pub mod state; 11 12/// FPS measurement. 13pub mod fps; 14 15/// Song handling. 16pub mod songs;