private void InitStory(Hero hero)
 {
     MyStory = new Story("RandomName", Hero);
     MyStory.AddParagraph(CreateParagraph.CreateAParagraph(Hero.CurrentParagraph));
     MyStory.PropertyChanged += MyStory_PropertyChanged;
     if (!LoadingHero)
     {
         MyStory.Start();
     }
     else
     {
         MyStory.Start(hero.CurrentParagraph);
     }
 }