Files
test/Assets/PerfectWorld/Scripts/UI/Dialogs/ItemUIListBox.cs
T
2025-11-17 18:52:07 +07:00

24 lines
534 B
C#

using TMPro;
using UnityEngine;
namespace BrewMonster
{
public class ItemUIListBox : MonoBehaviour
{
[SerializeField] private TextMeshProUGUI txtItem;
public string[] strDataName = new string[20];
public string[] strDataPtrName = new string[20];
public uint[] dwData = new uint[20];
public object[] pvData = new object[20];
public string strText;
public void SetText(string txt)
{
strText = txt;
txtItem.text = txt;
}
}
}