20 lines
437 B
C#
20 lines
437 B
C#
using ET.EventType;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ET
|
|
{
|
|
public class OnEnterMapEvent : AEvent<OnEnterMap>
|
|
{
|
|
public override async ETTask Run(OnEnterMap args)
|
|
{
|
|
Unit unit = args.unit;
|
|
if (unit)
|
|
{
|
|
//await StoreComponent.Instance.SetOpenRemoteStore(unit,false);
|
|
}
|
|
await ETTask.CompletedTask;
|
|
}
|
|
}
|
|
}
|