Files
JJBB/Assets/Project/Script/GUI/Childs/ChildItemCtrBase.cs
2024-08-23 15:49:34 +08:00

18 lines
427 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ChildItemCtrBase{
public static void ShowItemBase(List<int> _ItemList)
{
UIManager.ShowUI(UIInfo.ChildSkillLearnItemPanel, (bool bSucess, object param) =>
{
if (bSucess)
{
ChildSkillLearnItemPanel.Instance.InitItemPanel(_ItemList);
}
});
}
}