Skip to content
Snippets Groups Projects
Restart.cs 276 B
Newer Older
Richard Marcus's avatar
Richard Marcus committed
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Restart : MonoBehaviour
{
    public void LoadStartScreen()
    {
        CommunicationEvents.Facts.Clear();
        UnityEngine.SceneManagement.SceneManager.LoadScene(0);
    }
}