mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
13 lines
180 B
C#
13 lines
180 B
C#
namespace Daybreak.API.Interop.GuildWars;
|
|
|
|
public enum ServerRegion
|
|
{
|
|
International = -2,
|
|
America = 0,
|
|
Korea,
|
|
Europe,
|
|
China,
|
|
Japan,
|
|
Unknown = 0xff
|
|
}
|