This commit is contained in:
2025-11-19 20:43:20 +01:00
parent 35ef99cf7c
commit 5337e3b4e5
8 changed files with 112 additions and 47 deletions

View File

@@ -78,7 +78,7 @@ class Audio {
// --- Tipos anidados ---
struct Music {
MusicState state{MusicState::STOPPED}; // Estado actual de la música
std::string name{}; // Última pista de música reproducida
std::string name; // Última pista de música reproducida
bool loop{false}; // Indica si se reproduce en bucle
};