AllotPanel.cs 266 B

123456789101112131415
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using TMPro;
  5. public class AllotPanel : MonoSingleton<AllotPanel>
  6. {
  7. public TMP_Text allotText;
  8. public void SetAllotText( string msg)
  9. {
  10. allotText.text = msg;
  11. }
  12. }