ShowRtcHistoryControl.cs 641 B

1234567891011121314151617181920212223242526272829
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class ShowRtcHistoryControl : MonoBehaviour
  5. {
  6. // Start is called before the first frame update
  7. void Start()
  8. {
  9. }
  10. public void Home()
  11. {
  12. ScenesManager.Instance.showWindow(ScenesManager.SceneType.ShowChoose);
  13. }
  14. public void Device()
  15. {
  16. ScenesManager.Instance.showWindow(ScenesManager.SceneType.ShowDevice);
  17. }
  18. public void Nav()
  19. {
  20. }
  21. public void Close()
  22. {
  23. ScenesManager.Instance.showWindow(ScenesManager.SceneType.ShowRTC);
  24. }
  25. }