oml-audio 0.5.1

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
18
mod audio;
pub use audio::Audio as Audio;

mod music;
pub use music::Music as Music;

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


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

pub mod fileloader;
pub use fileloader::FileLoader as FileLoader;