21 lines
387 B
C#
21 lines
387 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;
|
||
|
}
|
||
|
|
||
|
// Update is called once per frame
|
||
|
void Update()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|