using System.Collections; using System.Collections.Generic; using UnityEngine; using TMPro; public class AllotPanel : MonoSingleton<AllotPanel> { public TMP_Text allotText; public void SetAllotText( string msg) { allotText.text = msg; } }