驱蚊app
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

27 righe
508 B

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class Init : MonoBehaviour
  5. {
  6. // Start is called before the first frame update
  7. void Start()
  8. {
  9. if (GameConfig.platform == RuntimePlatform.WebGLPlayer)
  10. {
  11. UIManager.Instance.OpenUI<UIMainMenu>();
  12. }
  13. else
  14. {
  15. UIManager.Instance.OpenUI<UILogin>();
  16. }
  17. }
  18. // Update is called once per frame
  19. void Update()
  20. {
  21. }
  22. }