startstory(story_id);
Наследование: StorySystem.AbstractStoryCommand
        protected override IStoryCommand CloneCommand()
        {
            StartStoryCommand cmd = new StartStoryCommand();

            cmd.m_StoryId = m_StoryId.Clone();
            return(cmd);
        }
 public override IStoryCommand Clone()
 {
     StartStoryCommand cmd = new StartStoryCommand();
     cmd.m_StoryId = m_StoryId.Clone();
     return cmd;
 }