using System; using System.Threading.Tasks; using ETModel; namespace ETHotfix { [ActorMessageHandler(AppType.Map)] public class G2M_SessionDisconnectHandler : AMActorLocationHandler { protected override void Run(Unit unit, G2M_SessionDisconnect message) { unit.GetComponent().IsDisconnect = true; } } }