19 lines
581 B
C#
19 lines
581 B
C#
|
using ET.EventType;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace ET
|
||
|
{
|
||
|
public class OpenStartSoulUpgradeUIEvent : AEvent<ET.EventType.OpenStartSoulUpgradeUI>
|
||
|
{
|
||
|
public override async ETTask Run(ET.EventType.OpenStartSoulUpgradeUI args)
|
||
|
{
|
||
|
StartSoulUpgradeUI ui =await FUIHelper.Open<FUI_StartSoulUpgradeUI,StartSoulUpgradeUI>(args.zoneScene, FUIPackage.Strength_StartSoulUpgradeUI, WindowPos.Center, (_ui)=>
|
||
|
{
|
||
|
//ui.m_Effect.Play();
|
||
|
});
|
||
|
await ETTask.CompletedTask;
|
||
|
}
|
||
|
}
|
||
|
}
|