zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Hotfix/Game/Handler/Battle/Common/Test/C2M_EndTestBattleFightHandl...

15 lines
518 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using System;
namespace ET
{
[ActorMessageHandler]
public class C2M_EndTestBattleFightHandler : AMActorLocationRpcHandler<Unit, C2M_EndTestBattleFight, M2C_EndTestBattleFight>
{
protected override async ETTask Run(Unit unit, C2M_EndTestBattleFight request, M2C_EndTestBattleFight response, Action reply)
{
//BattleMgrCompnent.Instance.RemoveBattle<TestBattle>(BattleMgrCompnent.Instance.GetBattle<TestBattle>( BattleType.MainStory, unit.TeamLeaderId));
reply();
await ETTask.CompletedTask;
}
}
}