mirror of
https://github.com/Maks1mS/pppi-rpg-game.git
synced 2024-12-24 14:44:39 +03:00
16 lines
569 B
C
16 lines
569 B
C
|
// Менеджер аудио - управляет звуками и музыкой в игре
|
|||
|
class AudioManager {
|
|||
|
public:
|
|||
|
// Загружает аудио ресурс
|
|||
|
void loadSound(const std::string& path);
|
|||
|
|
|||
|
// Воспроизводит звуковой эффект
|
|||
|
void playSoundEffect(const std::string& soundName);
|
|||
|
|
|||
|
// Воспроизводит музыкальную композицию
|
|||
|
void playMusic(const std::string& musicName);
|
|||
|
|
|||
|
// Останавливает все звуки и музыку
|
|||
|
void stopAllSounds();
|
|||
|
};
|