放放风

This commit is contained in:
bob
2025-07-16 17:48:15 +08:00
parent fb517330fa
commit 88cea0b5c6
33 changed files with 1063 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using NBC;
using NBC.Async;
using NBC.Network;
using NBC.Network.Interface;
namespace Assets.Scripts.Hotfix
{
public sealed class G2C_RepeatLoginHandler : Message<G2C_RepeatLogin>
{
protected override async FTask Run(Session session, G2C_RepeatLogin message)
{
Log.Debug("客户端重复登录了");
await FTask.CompletedTask;
}
}
}