oml-audio 0.6.7-alpha

Very basic, and thin abstraction of audio handling meant for games.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod audio;
pub use audio::Audio;

mod music;
pub use music::Music;

mod sound;
pub use sound::SoundBank;
pub use sound::SoundPool;

mod wav_file;
pub use wav_file::WavFile;
mod wav_player;
pub use wav_player::WavPlayer;

pub mod fileloader;
pub use fileloader::FileLoader;