oml-audio 0.2.2

Very basic, and thin abstraction of audio handling meant for games.
Documentation

use crate::FileLoader;

#[derive(Debug)]
pub struct MusicStub {
}

impl MusicStub {

	pub fn new() -> Self {
		Self {
		}
	}
	pub fn load( &mut self, fileloader: &mut impl FileLoader, filename: &str ) -> bool {
		true
	}

	pub fn play( &mut self ) {
	}

	pub fn pause( &mut self ) {
	}

	pub fn stop( &mut self ) {
	}

	pub fn update( &mut self, _time_step: f64 ) {

	}



}