feat(audio): add voltex_audio crate with AudioClip type

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-25 10:59:10 +09:00
parent 75ec3b308f
commit dc12715279
4 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
pub mod audio_clip;
pub mod wav;
pub mod mixing;
pub use audio_clip::AudioClip;
pub use wav::{parse_wav, generate_wav_bytes};
pub use mixing::{PlayingSound, mix_sounds};