Final commit

This commit is contained in:
2022-05-18 00:21:35 +07:00
parent ebddcadc38
commit 4132787ef8
1671 changed files with 697308 additions and 714 deletions

View File

@ -0,0 +1,13 @@
using System;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.SceneManagement;
public class LevelReset :MonoBehaviour , IPointerClickHandler
{
public void OnPointerClick(PointerEventData data)
{
// reload the scene
SceneManager.LoadScene(SceneManager.GetSceneAt(0).name);
}
}