using vnxbqy.UI;
|
using System.Collections;
|
using System.Collections.Generic;
|
using UnityEngine;
|
using UnityEngine.UI;
|
|
namespace EnhancedUI.EnhancedScroller
|
{
|
public class PromoteDetailFuncCell : ScrollerUI
|
{
|
[SerializeField] Text m_FuncTxt;
|
public override void Refresh(CellView cell)
|
{
|
m_FuncTxt.text = Language.Get(StringUtility.Contact("PromoteFunc_", (RolePromoteModel.PromoteDetailType)cell.index));
|
}
|
}
|
}
|