12345678910111213141516171819 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using XRTool.Util;
- public class ProjectMainWindow : WindowSingleton<ProjectMainWindow>
- {
- public void showXunJian()
- {
- WindowsManager.Instance.show(WindowConfig.windowType.XunJianLB);
- }
- public void showRtc()
- {
- ShowInfoTipManager.Instance.showTip("ÔÝ먦·Å,¾´ÇëÆÚ´ý");
- TimerMgr.Instance.CreateTimer(()=> { ShowInfoTipManager.Instance.closeTip(); },2f);
-
- }
- }
|