zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Hotfix/Game/Event/OnEnterMapEvent.cs

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;
}
}
}