pppi-rpg-game/program/audio_manager.h

16 lines
569 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Менеджер аудио - управляет звуками и музыкой в игре
class AudioManager {
public:
// Загружает аудио ресурс
void loadSound(const std::string& path);
// Воспроизводит звуковой эффект
void playSoundEffect(const std::string& soundName);
// Воспроизводит музыкальную композицию
void playMusic(const std::string& musicName);
// Останавливает все звуки и музыку
void stopAllSounds();
};