rhythm-open-exchange 0.2.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::{OsuEncoder, column_to_x};
pub use parser::parse;
pub use types::*;