30 lines
641 B
C#
30 lines
641 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
|
|
public class UnitMono : MonoBehaviour
|
|
{
|
|
public GameObject RODebugText;
|
|
public GameObject AttackHighlight;
|
|
public GameObject SelectHighlight;
|
|
public GameObject AllyHighlight;
|
|
public SpriteRenderer SpriteRenderer;
|
|
public GameObject UnionIcon;
|
|
public TextMeshProUGUI HealthText;
|
|
public TextMeshProUGUI DebugText;
|
|
public SpriteRenderer UnitInfoBGImg;
|
|
public TextMeshProUGUI UnitInfoName;
|
|
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|