using System.Collections; using System.Collections.Generic; using UnityEngine; public class Init : MonoBehaviour { // Start is called before the first frame update void Start() { if (GameConfig.platform == RuntimePlatform.WebGLPlayer) { UIManager.Instance.OpenUI(); } else { UIManager.Instance.OpenUI(); } } // Update is called once per frame void Update() { } }