mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-03-06 14:27:43 +00:00
18 lines
227 B
C
18 lines
227 B
C
![]() |
#ifndef _AUDIOMANAGER_H_
|
||
|
#define _AUDIOMANAGER_H_
|
||
|
|
||
|
class Sound;
|
||
|
|
||
|
namespace AudioManager
|
||
|
{
|
||
|
void registerSound(Sound* sound);
|
||
|
void unregisterSound(Sound* sound);
|
||
|
|
||
|
bool isInitialized();
|
||
|
|
||
|
void init();
|
||
|
void deinit();
|
||
|
}
|
||
|
|
||
|
#endif
|