Files
2026-02-21 16:45:37 +08:00

15 lines
128 B
C#

namespace Viveport
{
public enum Locale
{
US = 0,
DE = 1,
JP = 2,
KR = 3,
RU = 4,
CN = 5,
TW = 6,
FR = 7
}
}