mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
20 lines
257 B
C
20 lines
257 B
C
#ifndef LOCALIZE_H
|
|
#define LOCALIZE_H
|
|
|
|
inline const char* const g_LanguageNames[] = {
|
|
"english",
|
|
"german",
|
|
"french",
|
|
"italian",
|
|
"korean",
|
|
"spanish",
|
|
"schinese",
|
|
"tchinese",
|
|
"russian",
|
|
"japanese",
|
|
"portuguese",
|
|
"polish",
|
|
};
|
|
|
|
#endif // LOCALIZE_H
|