livesplit-core 0.13.0

livesplit-core is a library that provides a lot of functionality for creating a speedrun timer.
Documentation
use super::{end_tag, parse_children, Result};

pub use crate::component::pb_chance::Component;
use crate::util::xml::Reader;

pub fn settings(reader: &mut Reader<'_>, _: &mut Component) -> Result<()> {
    parse_children(reader, |reader, _, _| -> Result<()> {
        // Unused:
        // AttemptCount
        // UsePercentOfAttempts
        // UseFixedAttempts
        // IgnoreRunCount
        // FIXME:
        // DisplayOdds
        end_tag(reader)
    })?;

    Ok(())
}