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