blob: ea1db9fd403f6d9ddf6d4f7098812d10b53f89af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using UnityEngine;
using UnityEngine.UI;
public class BuildingGhost : MonoBehaviour
{
[SerializeField]
private Text text;
public void SetText(string newText)
{
text.text = newText;
}
}
|