//Loads this first scene
 public static void ResetApp()
 {
     Debug.Log("App reset");
     SceneManager.LoadScene(SceneManager.SPLASH);
 }
 static void InitializeGame()
 {
     Debug.Log("App INIT");
     SceneManager.LoadSceneInstant(SceneManager.SPLASH);
 }