//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.Network.PlugIns;
///
/// The language of the client.
/// Webzen released clients to different countries, with slightly different network protocol, mostly different header values.
///
public enum ClientLanguage
{
///
/// Invariant client language. A plugin marked with this value is compatible with any client.
///
Invariant,
///
/// The english client language. A plugin marked with this value is compatible only with the english (GMO) client.
///
English,
///
/// The japanese client language. A plugin marked with this value is compatible only with the japanese client.
///
Japanese,
///
/// The vietnamese client language. A plugin marked with this value is compatible only with the vietnamese client.
///
Vietnamese,
///
/// The filipino client language. A plugin marked with this value is compatible only with the filipino client.
///
Filipino,
///
/// The chinese client language. A plugin marked with this value is compatible only with the chinese client.
///
Chinese,
///
/// The korean client language. A plugin marked with this value is compatible only with the korean client.
///
Korean,
///
/// The thai client language. A plugin marked with this value is compatible only with the thai client.
///
Thai,
}