storm 0.11.0

A personal 2D game engine designed for performance
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod control;
mod instance;
mod loaders;
mod mixer;
mod sound;
mod state;

pub use self::control::SoundControl;
pub use self::sound::{Sound, SoundError};

pub(crate) use self::instance::SoundInstance;
pub(crate) use self::loaders::*;
pub(crate) use self::mixer::Mixer;
pub(crate) use self::state::{audio, AudioState};