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
#![allow(clippy::doc_markdown)]
//! StepMania (`.sm`) format converter.
//!
//! Supports dance-single (4K), dance-solo (6K), and dance-double (8K) charts.

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

pub use decoder::SmDecoder;
pub use encoder::SmEncoder;