Trait general_audio_static::AudioPlayer[][src]

pub trait AudioPlayer {
    type Sound;
    type Handle: AudioHandle;
    fn play(&self, sound: &Self::Sound) -> Self::Handle;
fn play_loop(&self, sound: &Self::Sound) -> Self::Handle;
fn load_sound(&self, bytes: &'static [u8]) -> Self::Sound; }

Associated Types

Required methods

Implementations on Foreign Types

Implementors