rg_soundmap 0.7.0

A Rust library for managing a sound map format.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Soundmap format handling and processing
//!
//! This module provides functionality for parsing, representing, and manipulating soundmap data.

pub mod chart;
pub mod manifest;
pub mod soundmap;

pub mod prelude {
    pub use crate::types::chart::Chart;
    pub use crate::types::manifest::Manifest;
    pub use crate::types::soundmap::SoundMap;
}

pub use crate::types::prelude::*;