2024-11-29 18:06:13 +08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class NewLoadPanel : BasePanel
|
|
|
|
{
|
|
|
|
public static NewLoadPanel instance;
|
|
|
|
// Start is called before the first frame update
|
|
|
|
public override void Start()
|
|
|
|
{
|
|
|
|
base.Start();
|
|
|
|
instance = this;
|
2024-12-09 17:23:51 +08:00
|
|
|
ShowPanel();
|
2024-11-29 18:06:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
void Update()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|