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
10
11
12
use serde::{Deserialize, Serialize};

/// Describes the Alignment of the Title in the Title Component.
#[derive(Copy, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum Alignment {
    /// Automatically align the title based on whether a game icon is shown.
    Auto,
    /// Always align the title to the left.
    Left,
    /// Always align the title to the center.
    Center,
}