private void AdventureController_OnAdventureOver(AdventureResult result)
 {
     Statistics = result.ToString();
     SceneChanger.LoadSpecificSceneAsync("StatisticsScene");
     Destroy(AdventureController.Instance.Hero.gameObject);
     Destroy(AdventureController.Instance.gameObject);
     AdventureController.Instance = null;
 }