mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 06:50:43 -04:00
21 lines
353 B
C++
21 lines
353 B
C++
#pragma once
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
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);
|
|
}
|