_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/RacingPanel/NewLoadPanel.cs

21 lines
387 B
C#
Raw Normal View History

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