19 lines
396 B
C#
19 lines
396 B
C#
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);
|
|
}
|
|
}
|