33 lines
569 B
C#
33 lines
569 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
|
|
public class UI_TopPanel : BasePanel
|
|
{
|
|
/// <summary>
|
|
/// ±êÌâ
|
|
/// </summary>
|
|
private TextMeshProUGUI TitleText;
|
|
protected override void Awake()
|
|
{
|
|
base.Awake();
|
|
TitleText = GetControl<TextMeshProUGUI>("±êÌâ");
|
|
}
|
|
|
|
public void OnInit()
|
|
{
|
|
Debug.Log("ÎÒ±»³õʼ»¯ÁËOnInit");
|
|
}
|
|
|
|
public override void ShowMe()
|
|
{
|
|
base.ShowMe();
|
|
}
|
|
|
|
public override void HideMe()
|
|
{
|
|
base.HideMe();
|
|
}
|
|
}
|