23 lines
354 B
C#
23 lines
354 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class UIManager : MonoBehaviour
|
|
{
|
|
public GameObject animGame;
|
|
|
|
|
|
private void Start()
|
|
{
|
|
animGame.SetActive(true);
|
|
}
|
|
|
|
public void Back()
|
|
{
|
|
SceneManager.LoadScene("menu");
|
|
}
|
|
|
|
}
|