FiE-Game/src/CloudRegionCode.cs

29 lines
419 B
C#
Raw Normal View History

2018-11-21 21:16:20 +01:00
/// <summary>
/// Country region codes for the remote cloud server
/// </summary>
public enum CloudRegionCode {
// Europe
eu = 0,
// United States
us = 1,
// Asia
asia = 2,
// Japone
jp = 3,
// Australia
au = 5,
// ???
usw = 6,
// Saddle Arabia
sa = 7,
// ???
cae = 8,
// ???
kr = 9,
// India
@in = 10,
// None/Offline
none = 4
2018-11-20 20:10:49 +01:00
}