mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
18 lines
255 B
C#
18 lines
255 B
C#
namespace Daybreak.API.Interop.GuildWars;
|
|
|
|
public enum Language
|
|
{
|
|
English,
|
|
Korean,
|
|
French,
|
|
German,
|
|
Italian,
|
|
Spanish,
|
|
TraditionalChinese,
|
|
Japanese = 8,
|
|
Polish,
|
|
Russian,
|
|
BorkBorkBork = 17,
|
|
Unknown = 0xff
|
|
}
|