33 lines
592 B
C#
33 lines
592 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace VW.CarAssistant
|
|
{
|
|
public class MainUI : MonoBehaviour
|
|
{
|
|
public Button returnBtn;
|
|
private void Awake()
|
|
{
|
|
returnBtn.onClick.AddListener(Back);
|
|
}
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
|
|
void Back()
|
|
{
|
|
LoadingManager.Instance.Load("Boot");
|
|
}
|
|
}
|
|
}
|