1234567891011121314151617181920212223242526272829 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class ShowRtcHistoryControl : MonoBehaviour
- {
- // Start is called before the first frame update
- void Start()
- {
-
- }
- public void Home()
- {
- ScenesManager.Instance.showWindow(ScenesManager.SceneType.ShowChoose);
- }
- public void Device()
- {
- ScenesManager.Instance.showWindow(ScenesManager.SceneType.ShowDevice);
- }
- public void Nav()
- {
-
- }
- public void Close()
- {
- ScenesManager.Instance.showWindow(ScenesManager.SceneType.ShowRTC);
- }
- }
|