diff --git a/program/audio_manager.cpp b/program/audio_manager.cpp new file mode 100644 index 0000000..e69de29 diff --git a/program/audio_manager.h b/program/audio_manager.h new file mode 100644 index 0000000..e1afee0 --- /dev/null +++ b/program/audio_manager.h @@ -0,0 +1,15 @@ +// Менеджер аудио - управляет звуками и музыкой в игре +class AudioManager { +public: + // Загружает аудио ресурс + void loadSound(const std::string& path); + + // Воспроизводит звуковой эффект + void playSoundEffect(const std::string& soundName); + + // Воспроизводит музыкальную композицию + void playMusic(const std::string& musicName); + + // Останавливает все звуки и музыку + void stopAllSounds(); +};