rhythm-open-exchange 0.6.2

A try to create the ffmpeg of vsrg
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! osu!mania format converter.
//!
//! Converts between `.osu` files (mania mode) and ROX format.

pub mod decoder;
pub mod encoder;
pub mod parser;
pub mod types;

pub use decoder::OsuDecoder;
pub use encoder::{column_to_x, OsuEncoder};
pub use parser::parse;
pub use types::*;