mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-22 22:07:59 +01:00
15 lines
138 B
C#
15 lines
138 B
C#
|
public enum CloudRegionCode
|
||
|
{
|
||
|
eu = 0,
|
||
|
us = 1,
|
||
|
asia = 2,
|
||
|
jp = 3,
|
||
|
au = 5,
|
||
|
usw = 6,
|
||
|
sa = 7,
|
||
|
cae = 8,
|
||
|
kr = 9,
|
||
|
@in = 10,
|
||
|
none = 4
|
||
|
}
|