CultivateImmortal/Assets/Scripts/GameScene/Main.cs

20 lines
376 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Main : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
Time.timeScale = 0f;
UIManager.Instance.ShowPanel<LoginPanel>(E_UILayer.Bottom);
}
// Update is called once per frame
void Update()
{
}
}