/// <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); }
public override void ResolveEvent(Story story) { story.AddParagraph(CreateParagraph.CreateAParagraph(this.DestinationNumber)); story.Move(this.DestinationNumber); }