mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 03:05:04 +00:00
18 lines
539 B
C++
18 lines
539 B
C++
#pragma once
|
|
|
|
#include "prim/seadEnum.h"
|
|
#include "prim/seadSafeString.h"
|
|
|
|
namespace sead
|
|
{
|
|
SEAD_ENUM(RegionLanguageID, JPja, USen, USes, USfr, USpt, EUen, EUes, EUfr, EUde, EUit, EUpt, EUnl, EUru, KRko, CNzh, TWzh)
|
|
|
|
class EnvUtil
|
|
{
|
|
public:
|
|
static const SafeString& getRomType();
|
|
static RegionLanguageID getRegionLanguage();
|
|
static s32 getEnvironmentVariable(BufferedSafeString* out, const SafeString& variable);
|
|
static s32 resolveEnvronmentVariable(BufferedSafeString* out, const SafeString& str);
|
|
};
|
|
} // namespace sead
|