_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/RacingPanel/NewLoadPanel.cs
2024-12-09 17:23:51 +08:00

22 lines
408 B
C#

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;
ShowPanel();
}
// Update is called once per frame
void Update()
{
}
}