mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
20 lines
317 B
C#
20 lines
317 B
C#
namespace Daybreak.API.Interop.GuildWars;
|
|
|
|
public enum District
|
|
{
|
|
Current,
|
|
International,
|
|
American,
|
|
EuropeEnglish,
|
|
EuropeFrench,
|
|
EuropeGerman,
|
|
EuropeItalian,
|
|
EuropeSpanish,
|
|
EuropePolish,
|
|
EuropeRussian,
|
|
AsiaKorean,
|
|
AsiaChinese,
|
|
AsiaJapanese,
|
|
Unknown = 0xff
|
|
}
|