Files
TEngine/Assets/GameScripts/DotNet/Hotfix/Server/Demo/Map/C2M_TestRobotCaseHandler.cs
ALEXTANG 336d4b2eb9 [+] 接入ET8服务端
[+] 接入ET8服务端
2023-07-13 12:23:48 +08:00

14 lines
376 B
C#

using System;
namespace ET.Server
{
[ActorMessageLocationHandler(SceneType.Map)]
public class C2M_TestRobotCaseHandler : ActorMessageLocationHandler<Unit, C2M_TestRobotCase, M2C_TestRobotCase>
{
protected override async ETTask Run(Unit unit, C2M_TestRobotCase request, M2C_TestRobotCase response)
{
response.N = request.N;
await ETTask.CompletedTask;
}
}
}