CultivationOfBrewing/Assets/Scripts/UI/UIPanel/UI_BGPanel.cs

20 lines
324 B
C#

using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class UI_BGPanel : BasePanel
{
protected override void Awake()
{
base.Awake();
}
public override void ShowMe()
{
base.ShowMe();
}
public override void HideMe()
{
base.HideMe();
}
}