#include "core/audio/audio_adapter.hpp" #include "core/resources/resource.h" namespace AudioResource { JA_Music_t* getMusic(const std::string& name) { return Resource::get()->getMusic(name); } JA_Sound_t* getSound(const std::string& name) { return Resource::get()->getSound(name); } } // namespace AudioResource