TH1/Unity/Assets/Scripts/TH1_UI/Components/UIInfoDiplomacyAvatarMono.cs
2025-08-27 00:56:21 +08:00

27 lines
516 B
C#

using TMPro;
using UnityEngine;
using UnityEngine.UI;
namespace TH1_UI.Components
{
public class UIInfoDiplomacyAvatarMono : MonoBehaviour
{
public Image Avatar;
public Image RelationStateBG;
public TextMeshProUGUI RelationStateText;
public TextMeshProUGUI Title;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}
}