This repository has been archived on 2024-03-29. You can view files and clone it, but cannot push or open issues or pull requests.
FreeSR/FreeSR.Proto/LanguageType.cs
2024-01-27 21:06:07 +08:00

22 lines
349 B
C#

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,
}
}