baseline: OpenMU upstream b5a0961 (fresh source)

This commit is contained in:
Acentech Dev
2026-07-14 19:00:35 +03:00
parent 450402e47d
commit 36fc125d5c
11968 changed files with 748705 additions and 0 deletions

View File

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