15 lines
461 B
C#
15 lines
461 B
C#
using Fantasy;
|
|
using Fantasy.Async;
|
|
using Fantasy.Network.Interface;
|
|
|
|
namespace Hotfix;
|
|
|
|
public class C2Chat_TestRequestHandler : RouteRPC<ChatUnit,C2Chat_TestRequest,Chat2C_TestResponse>
|
|
{
|
|
protected override async FTask Run(ChatUnit chatUnit, C2Chat_TestRequest request, Chat2C_TestResponse response, Action reply)
|
|
{
|
|
Log.Info($"chatUnit{chatUnit.GameName} AccountId:{chatUnit.AccountId}");
|
|
await FTask.CompletedTask;
|
|
|
|
}
|
|
} |