Esempio n. 1
0
 /// <summary>
 /// Resolve ALL linked event, then move to the DestinationNumber
 /// </summary>
 /// <param name="story"></param>
 public override void ResolveEvent(Story story)
 {
     foreach (Event linkEvent in this.ListLinkedEvent)
     {
         linkEvent.ResolveEvent(story);
     }
     story.AddParagraph(CreateParagraph.CreateAParagraph(this.DestinationNumber));
     story.Move(this.DestinationNumber);
 }
Esempio n. 2
0
 public override void ResolveEvent(Story story)
 {
     story.AddParagraph(CreateParagraph.CreateAParagraph(this.DestinationNumber));
     story.Move(this.DestinationNumber);
 }