#pragma once #include namespace dusk::audio { /** * Initialize the audio system and start playing audio. */ void Initialize(); void SetEnableReverb(bool value); void SetMasterVolume(f32 value); void SetPaused(bool paused); u32 GetResetCount(int channelIdx); f32 VolumeFromU16(u16 value); }