mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 10:23:59 +00:00
11 lines
348 B
C#
11 lines
348 B
C#
namespace MikuSB.GameServer.Server.CallGS.Handlers.Misc;
|
|
|
|
// Client notifies the server of its language setting. No response required.
|
|
// param: {nType, sLan, sEx}
|
|
[CallGSApi("LanguageChange")]
|
|
public class LanguageChange : ICallGSHandler
|
|
{
|
|
public Task Handle(Connection connection, string param, ushort seqNo)
|
|
=> Task.CompletedTask;
|
|
}
|