tandem-tui 0.4.8

Terminal user interface for the Tandem engine
1
2
3
4
5
pub const SPINNER_FRAMES: [&str; 10] = ["|", "/", "-", "\\", "|", "/", "-", "\\", ">", "<"];

pub fn frame_for_tick(tick: usize) -> &'static str {
    SPINNER_FRAMES[tick % SPINNER_FRAMES.len()]
}