using ET.EventType; using System; using System.Collections.Generic; namespace ET { public class OnEnterMapEvent : AEvent { public override async ETTask Run(OnEnterMap args) { var unit = args.unit; if (unit) { //await StoreComponent.Instance.SetOpenRemoteStore(unit,false); } await ETTask.CompletedTask; } } }