livesplit-core 0.13.0

livesplit-core is a library that provides a lot of functionality for creating a speedrun timer.
Documentation
1
2
3
4
5
6
7
8
9
cfg_if::cfg_if! {
    if #[cfg(feature = "wasm-web")] {
        mod web;
        pub use self::web::*;
    } else {
        mod unknown;
        pub use self::unknown::*;
    }
}