1
0
Fork 0
LaboratoryProtection/Assets/UnityTest/ZXL/Scripts/UI/WeakTipsUI.cs

17 lines
285 B
C#
Raw Normal View History

2023-09-13 15:04:19 +08:00
using TMPro;
using UnityEngine;
using UnityEngine.UI;
namespace UnityTest.ZXL
{
// 若提示
2023-09-13 15:31:44 +08:00
public class WeakTipsUI : UI
2023-09-13 15:04:19 +08:00
{
public TextMeshProUGUI text;
public void SetContent(string content)
{
text.text = content;
}
}
}