18 lines
427 B
C#
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);
|
|||
|
}
|
|||
|
});
|
|||
|
}
|
|||
|
}
|