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
14
15
//! # Rhythm Open Exchange (ROX)
//!
//! A universal, compact binary format for VSRG (Vertical Scrolling Rhythm Games).
//! Serves as a pivot format for converting between different rhythm game formats.

#![warn(clippy::pedantic)]

pub mod codec;
pub mod error;
pub mod model;

// Re-exports for convenience
pub use codec::{Decoder, Encoder, RoxCodec};
pub use error::{RoxError, RoxResult};
pub use model::{Hitsound, Metadata, Note, NoteType, RoxChart, TimingPoint};