TopManager.cs 383 B

123456789101112131415161718
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class TopManager : MonoSingleton<TopManager>
  5. {
  6. public GameObject root;
  7. public GameObject icon;
  8. public void exitUser()
  9. {
  10. LoginManager.Instance.ExitUser();
  11. WindowsManager.Instance.show(WindowConfig.windowType.Login);
  12. }
  13. private void OnEnable()
  14. {
  15. }
  16. }