mirror of
https://github.com/Maks1mS/pppi-rpg-game.git
synced 2024-12-23 22:32:59 +03:00
добавлен audio_manager
This commit is contained in:
parent
2625f0df4c
commit
56dab74021
0
program/audio_manager.cpp
Normal file
0
program/audio_manager.cpp
Normal file
15
program/audio_manager.h
Normal file
15
program/audio_manager.h
Normal file
@ -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();
|
||||
};
|
Loading…
Reference in New Issue
Block a user