18 lines
313 B
C#
18 lines
313 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class GameOverScreen : MonoBehaviour
|
|
{
|
|
public void RestartGame()
|
|
{
|
|
SceneManager.LoadScene(2);
|
|
}
|
|
|
|
public void Back2MainMenue()
|
|
{
|
|
SceneManager.LoadScene(1);
|
|
}
|
|
}
|