lerni 0.0.6

Lerni content framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Flip is an enum that represents the flip state of an object.
#[derive(Clone, Default, PartialEq)]
pub enum Flip {
    /// No flip.
    #[default]
    None,
    /// Horizontal flip.
    Horizontal,
    /// Vertical flip.
    Vertical,
}