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

/// Describes the direction the components of a layout are laid out in.
#[derive(Copy, Clone, Default, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum LayoutDirection {
    /// The components are placed on top of each other vertically.
    #[default]
    Vertical,
    /// The components are placed next to each other horizontally.
    Horizontal,
}