This commit is contained in:
journaliciouz
2025-10-16 22:35:23 +02:00
parent 6f6333c8c4
commit 4fc005b082
6 changed files with 63 additions and 126 deletions

View File

@@ -0,0 +1,18 @@
using Core;
using UnityEngine;
using UnityEngine.SceneManagement;
public class DivingGameOverScreen : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
public void PlayAgain()
{
SceneManagerService.Instance.ReloadCurrentScene();
gameObject.SetActive(false);
}
}