Files
wiicompiled/runtime/src/product/base_product.cpp
T
patchzyy ec226e8348 init
2026-08-23 17:10:50 +02:00

14 lines
250 B
C++

#include "runtime_product.h"
namespace RuntimeProduct {
const Descriptor& Active() noexcept {
static constexpr Descriptor descriptor{
Kind::BaseGame,
"WiiCompiled",
};
return descriptor;
}
} // namespace RuntimeProduct