quaver-rs 0.1.0

A Rust library for parsing and analyzing Quaver rhythm game maps
Documentation
1
2
3
4
5
6
7
8

/// Represents hand of a player. Used for calculation + object grouping.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum Hand {
    Left,
    Right,
    Ambiguous,
}