This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/core/data/language_codes.hpp

27 lines
453 B
C++
Raw Normal View History

2022-11-24 21:49:05 +00:00
#pragma once
namespace big
{
struct LanguageType
{
uint32_t id;
const char name[32];
};
const LanguageType languages[] =
{
{ 0, "English" },
{ 1, "French" },
{ 2, "German" },
{ 3, "Italian" },
{ 4, "Spanish (Spain)" },
{ 5, "Portuguese (Brazil)" },
{ 6, "Polish" },
{ 7, "Russian" },
{ 8, "Korean" },
{ 9, "Chinese (Traditional)" },
{ 10, "Japanese" },
{ 11, "Spanish (Mexico)" },
{ 12, "Chinese (Simpified)" }
};
}