namespace ET
{
[ActorMessageHandler]
public class C2M_StopMoveHandler : AMActorLocationHandler<Unit, C2M_StopMove>
protected override async ETTask Run(Unit unit, C2M_StopMove message)
MoveHelper.Stop(unit);
await ETTask.CompletedTask;
}