ProcessDlg.cs 410 B

12345678910111213141516171819202122232425
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using XRTool.UI;
  5. public class ProcessDlg : MonoBehaviour
  6. {
  7. private Dlg dlgBody;
  8. public Dlg DlgBody { get => dlgBody; set => dlgBody = value; }
  9. // Start is called before the first frame update
  10. void Start()
  11. {
  12. }
  13. // Update is called once per frame
  14. void Update()
  15. {
  16. }
  17. }