mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-18 01:05:13 +00:00
13 lines
142 B
C
13 lines
142 B
C
|
#pragma once
|
||
|
|
||
|
namespace nn { namespace settings {
|
||
|
|
||
|
struct LanguageCode
|
||
|
{
|
||
|
char data[8];
|
||
|
};
|
||
|
|
||
|
void GetLanguageCode(LanguageCode* out);
|
||
|
|
||
|
} }
|