normalitzat Audio

This commit is contained in:
2026-04-18 11:44:14 +02:00
parent 33cda62e44
commit f9a1ae28ad
7 changed files with 282 additions and 192 deletions

View File

@@ -0,0 +1,13 @@
#include "core/audio/audio_adapter.hpp"
#include "core/resources/resource_cache.hpp"
namespace AudioResource {
JA_Music_t* getMusic(const std::string& name) {
return Resource::Cache::get()->getMusic(name);
}
JA_Sound_t* getSound(const std::string& name) {
return Resource::Cache::get()->getSound(name);
}
} // namespace AudioResource