27 lines
516 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|