mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-24 10:54:51 -05:00
15 lines
444 B
C++
15 lines
444 B
C++
#include <nn/sl/ITitleIconCache.h>
|
|
#include <nn/sl/TitleIconCache.h>
|
|
|
|
namespace nn::sl {
|
|
|
|
namespace {
|
|
extern "C" details::ITitleIconCacheInternal *GetDefaultTitleIconCache__Q2_2nn2slFv();
|
|
}
|
|
|
|
static details::TitleIconCacheFromPtr sDefaultTitleIconCache(GetDefaultTitleIconCache__Q2_2nn2slFv());
|
|
|
|
details::ITitleIconCacheBase &GetDefaultTitleIconCache() {
|
|
return sDefaultTitleIconCache;
|
|
}
|
|
} // namespace nn::sl
|