Archived
1
0
Fork 0
forked from Moux23333/FreeSR
This repository has been archived on 2024-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
FreeSR/FreeSR.Proto/LanguageType.cs

23 lines
349 B
C#
Raw Normal View History

2024-01-27 13:06:07 +00:00
namespace FreeSR.Proto
{
using ProtoBuf;
public enum LanguageType
{
LANGUAGE_NONE = 0,
LANGUAGE_SC = 1,
LANGUAGE_TC = 2,
LANGUAGE_EN = 3,
LANGUAGE_KR = 4,
LANGUAGE_JP = 5,
LANGUAGE_FR = 6,
LANGUAGE_DE = 7,
LANGUAGE_ES = 8,
LANGUAGE_PT = 9,
LANGUAGE_RU = 10,
LANGUAGE_TH = 11,
LANGUAGE_VI = 12,
LANGUAGE_ID = 13,
}
}