16 lines
261 B
C#
16 lines
261 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.UI;
|
||
|
|
||
|
public class TxtEntry : MonoBehaviour
|
||
|
{
|
||
|
public Text txtEntry;
|
||
|
|
||
|
|
||
|
public void UpdatePanel(string entry)
|
||
|
{
|
||
|
txtEntry.text = entry;
|
||
|
}
|
||
|
}
|