mission-demolition/Assets/Scripts/Retry.cs

24 lines
407 B
C#
Raw Normal View History

2024-02-22 02:08:26 -06:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class Retry : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public void ChangeScene() {
SceneManager.LoadScene("_Scene_0");
}
}