lf2_parse 0.1.0

Parses Little Fighter 2 (LF2) data files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Whether the same / opposite of parent, or always to the right.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum OPointFacingDir {
    /// Face the same direction as the parent.
    ParentSame,
    /// Face the opposite direction to the parent.
    ParentOpposite,
    /// Always face to the right.
    Right,
}

impl Default for OPointFacingDir {
    fn default() -> Self {
        Self::ParentSame
    }
}