YanCheng_Metrology/Assets/ScriptTemplates/40-UI Script-NewUIPanel.cs.txt

44 lines
533 B
Plaintext

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class #SCRIPTNAME# : BasePanel
{
public void Init()
{
}
void Start()
{
}
void Update()
{
}
public override void ShowMe()
{
}
public override void HideMe()
{
}
protected override void OnClick(string btnName)
{
switch (btnName)
{
case "":
break;
default:
break;
}
}
}