24 lines
534 B
C#
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;
|
|
}
|
|
}
|
|
}
|