15 lines
514 B
C#
15 lines
514 B
C#
using Fantasy;
|
|
using Fantasy.Async;
|
|
using Fantasy.Network.Interface;
|
|
|
|
namespace Hotfix;
|
|
|
|
public class G2Chat_LoginRequestHandler : RouteRPC<Scene,G2Chat_LoginRequest,Chat2G_LoginResponse>
|
|
{
|
|
protected override async FTask Run(Scene scene, G2Chat_LoginRequest request, Chat2G_LoginResponse response, Action reply)
|
|
{
|
|
Log.Info($"登录聊天服务器成功 {request.GameName} AccountId {request.AccountId } GateRoutedId { request.GateRoutedId}");
|
|
|
|
await FTask.CompletedTask;
|
|
}
|
|
} |