31 lines
477 B
C#
31 lines
477 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// 起重机视图界面
|
|
/// </summary>
|
|
public class UI_CraneViewPanel : BasePanel
|
|
{
|
|
protected override void Awake()
|
|
{
|
|
base.Awake();
|
|
}
|
|
|
|
public void OnInit()
|
|
{
|
|
Debug.Log("我被初始化了OnInit");
|
|
}
|
|
|
|
public override void ShowMe()
|
|
{
|
|
base.ShowMe();
|
|
}
|
|
|
|
public override void HideMe()
|
|
{
|
|
base.HideMe();
|
|
}
|
|
}
|