mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 07:02:47 -04:00
50303bba1b
Does not fix clicking :( Fixes https://github.com/TakaRikka/dusk/issues/132 Fixes https://github.com/TakaRikka/dusk/issues/128
17 lines
280 B
C++
17 lines
280 B
C++
#pragma once
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
namespace dusk::audio {
|
|
/**
|
|
* Initialize the audio system and start playing audio.
|
|
*/
|
|
void Initialize();
|
|
|
|
void SetMasterVolume(f32 value);
|
|
|
|
u32 GetResetCount(int channelIdx);
|
|
|
|
f32 VolumeFromU16(u16 value);
|
|
}
|