Files
Fishing2/Assets/Scripts/Model/Net/Hotfix/Handler/G2C_RepeatLoginHandler.cs
2025-11-12 17:24:02 +08:00

16 lines
405 B
C#

using Fantasy.Async;
using Fantasy.Network;
using Fantasy.Network.Interface;
using NBC;
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;
}
}
}