using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class TipsManager : MonoBehaviour
{
    public static TipsManager Instance; // 静态实例
    public GameObject tipsPanel; // 提示面板

    void Awake()
    {
        // 在游戏开始时将此实例赋值给静态实例
        Instance = this;
    }
}
