StorySystem.CommonCommands.ResumeLocalMessageHandlerCommand.ExecCommand C# (CSharp) Method

ExecCommand() protected method

protected ExecCommand ( StoryInstance instance, long delta ) : bool
instance StoryInstance
delta long
return bool
        protected override bool ExecCommand(StoryInstance instance, long delta)
        {
            for (int i = 0; i < m_MsgIds.Count; i++) {
                instance.PauseMessageHandler(m_MsgIds[i].Value, false);
            }
            return false;
        }