2023-09-14 15:36:17 +08:00
|
|
|
|
using System;
|
|
|
|
|
using UnityEngine;
|
2023-09-13 15:31:44 +08:00
|
|
|
|
|
|
|
|
|
namespace UnityTest.ZXL
|
|
|
|
|
{
|
|
|
|
|
public class UI : MonoBehaviour
|
|
|
|
|
{
|
|
|
|
|
public UIType uiType;
|
2023-09-14 15:36:17 +08:00
|
|
|
|
|
|
|
|
|
public virtual void OnInit()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Awake()
|
|
|
|
|
{
|
|
|
|
|
OnInit();
|
|
|
|
|
}
|
2023-09-13 15:31:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|