pppi-rpg-game/program/audio_manager.h

29 lines
907 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.

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