normalitzat Audio

This commit is contained in:
2026-04-18 11:43:45 +02:00
parent 53c2b345c9
commit 0dbf38f506
7 changed files with 435 additions and 227 deletions
+13
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