mirror of
https://github.com/patchzyy/wiicompiled
synced 2026-09-13 01:55:57 -04:00
14 lines
250 B
C++
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
|